以编程方式触发按钮事件

时间:2010-05-29 18:29:15

标签: iphone button event-handling

如何以编程方式触发按钮事件?

1 个答案:

答案 0 :(得分:2)

你的问题是我见过的最模糊的问题之一,但我想你想要这样的事情:

[button addTarget:self action:@selector(theMethodToBeCalled:) forControlEvents:UIControlEventTouchUpInside];

然后你的方法应该是这样的

- (void)theMethodToBeCalled:(id)sender {

}