2010-05-29 92 views

回答

2

你的問題是我見過的最模糊的一個,但我想你想是這樣的:

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

然後你的方法應該是這樣的

- (void)theMethodToBeCalled:(id)sender { 

} 
+0

我使用的是相同的調用按鈕事件的代碼,但我需要在應用程序加載時立即觸發一個按鈕的事件 – 2010-05-29 18:49:47

+0

因此,您想在應用程序加載時觸發方法嗎?像[self doMethod]; – 2010-05-29 19:01:19

相關問題