0
如何以編程方式觸發按鈕事件?以編程方式觸發按鈕事件
如何以編程方式觸發按鈕事件?以編程方式觸發按鈕事件
你的問題是我見過的最模糊的一個,但我想你想是這樣的:
[button addTarget:self action:@selector(theMethodToBeCalled:) forControlEvents:UIControlEventTouchUpInside];
然後你的方法應該是這樣的
- (void)theMethodToBeCalled:(id)sender {
}
我使用的是相同的調用按鈕事件的代碼,但我需要在應用程序加載時立即觸發一個按鈕的事件 – 2010-05-29 18:49:47
因此,您想在應用程序加載時觸發方法嗎?像[self doMethod]; – 2010-05-29 19:01:19