标签: iphone button event-handling
如何以编程方式触发按钮事件?
答案 0 :(得分:2)
你的问题是我见过的最模糊的问题之一,但我想你想要这样的事情:
[button addTarget:self action:@selector(theMethodToBeCalled:) forControlEvents:UIControlEventTouchUpInside];
然后你的方法应该是这样的
- (void)theMethodToBeCalled:(id)sender { }