UITextView是模態控制器視圖的子視圖。當鍵盤出現時,我需要降低UITextView的高度,以使UITextView的底部邊界y座標等於鍵盤的頂部y座標。 I'getting鍵盤高度iPad上的UIModalPresentationFormSheet。如何在出現鍵盤時調整UITextView高度
CGRect frameBegin = [[notification.userInfo objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue] ;
CGRect frameEnd = [[notification.userInfo objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue];
CGRect resultBegin = [self.view convertRect:frameBegin fromView:nil];
CGRect resultEnd = [self.view convertRect:frameEnd fromView:nil];
CGFloat kbdHeight = resultBegin.origin.y - resultEnd.origin.y;
的問題是,這種模式的看法跳起來鍵盤出現時。在這種情況下如何計算鍵盤的頂部邊界座標?
自創建問題以來發生了很多事情。無論如何謝謝你的答案。 – Michael 2015-05-15 19:52:10