-2
我的程序有UIToolBar
,其中包含UITextField
和UIButton
。當軟鍵盤出現時,整個視圖(self.view
)就會出現。當UIToolBar
移動到新的位置時,該按鈕有時不會正確捕獲事件。點擊按鈕需要點擊一個事件。動畫UIButton不願意捕捉事件
當鍵盤出現
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.25];
self.view.frame = CGRectMake(0,-220,320,400);
tableView.frame = CGRectMake(10, 220, 320, 264);
[UIView commitAnimations];
的[詞在iPhone屏幕上方落下](HTTP可能重複執行下面的代碼集:// stackoverflow.com/questions/8222466/words-falling-from-the-top-of-screen-in-iphone) - 請參閱我的答案,關於presentationLayer和touch物件的動畫處理 – jrturton