我在tableView中使用CustomCell。只需几个按钮和标签。现在我想在这些按钮中给出一些动作。任何人都可以帮助我如何为我的UIButton使用Action?
在界面中:
-(IBAction)btnAction;
在实施中:
-(IBAction)btnAction
{
[self Evaluate:(int *)1 :(int *)2];
}
现在告诉我如何在UIButton中分配动作?我的单元格中有UIButton。
答案 0 :(得分:0)
您可以使用addTarget:action:forControlEvents:
方法(UIControl的方法,UIButton是子类)以编程方式向UIButton添加操作。
所以你的实现看起来像是:
[myButton addTarget:self
action:@selector(btnAction)
forControlEvents:UIControlEventTouchUpInside];
希望这有帮助。