我希望當我在iphone應用程序中點擊「提交」時鍵盤就會消失,而不是等到函數完成。該函數需要很長時間,因爲我正在執行同步HTTP請求。只有在處理完成後纔會出現resignFirstResponder
在整個函數完成之前,視圖如何不更新?我正在xcode的模擬器中工作。
-(IBAction)submit:(id)sender{
[myTitle resignFirstResponder];
...some ASIHTTP setup...
[request startSynchronous];
return;
}
感謝您的解釋! – Jason 2010-08-11 13:28:14