我是一名新的 iPad 开发人员。
我以编程方式创建了 UIButton,我想在其中识别用户点击了哪个按钮,并据此我想做一些操作。
我应该如何识别这个?
这是我的代码片段:
for(int i=0;i<[_array count];i++)
{
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.tag=count;
[button addTarget:self
action:@selector(aMethod:)
forControlEvents:UIControlEventTouchDown];
button.backgroundColor=[UIColor redColor];
[button setTitle:@"Show View" forState:UIControlStateNormal];
button.frame = CGRectMake(xpos, 270.0, 200.0, 150.0);
[self.view addSubview:button];
}
这就是我现在正在做的事情:我想我会给每个按钮分配计数,然后我会将这个计数传递给按钮单击方法。这是一个好主意吗?有没有其他可能的方法?
在按钮点击我打电话aMethod
:
-(void)aMethod:(id)sender{
NSLog(@"btn clicked");
}
任何帮助将不胜感激!