如何在ios中的按钮数组上找到按下了哪个按钮
Posted
技术标签:
【中文标题】如何在ios中的按钮数组上找到按下了哪个按钮【英文标题】:How to find which button is pressed on the array of buttons in ios 【发布时间】:2011-11-16 06:57:39 【问题描述】:我有一组按钮,我希望每个按钮上的文字..显示在标签上..所以朋友,请告诉我如何实现这一点
问候 兰吉特
【问题讨论】:
【参考方案1】:这样添加按钮就可以了
Button.tag = i
[Button addTarget:self action:@selector(MenuDetail:) forControlEvents:UIControlEventTouchUpInside];
[listOfButtons addObject:Button];
并按以下方式处理修饰事件
-(IBAction)MenuDetail:(id)sender
UIButton *temp= (UIButton *)sender;
NSInteger parentValue=temp.tag;
clsMenuItem *tempMenu=[appDelegate searchMenu:parentValue];
if(parentValue==1)
// do something
else if(parentValue==1)
// do something
希望对你有帮助
【讨论】:
嘿,感谢 rupesh 的回答,但是 rupesh,我有一个二维按钮数组,我用代码而不是 xib 创建了它,所以这是否可行? 是的,它可以工作,因为我们检查按钮的标签并根据标签应用操作以上是关于如何在ios中的按钮数组上找到按下了哪个按钮的主要内容,如果未能解决你的问题,请参考以下文章