这听起来一定很奇怪,但我想把键盘的 CGRect 从 UITextView 中拿出来。这是一张可以帮助您的图片:
我基本上希望 UITextView 变小,所以当我添加文本时它会向下滚动。如果您需要更多信息,请询问我。
编辑:当我使用此代码时:
- (void)keyboardWasShown:(NSNotification*)notification {
NSDictionary* info = [notification userInfo];
kbSIZE = [[info objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue];
CGRect newTextViewFrame = self.notesTextView.frame;
newTextViewFrame.size.height -= kbSIZE.size.height;
self.notesTextView.frame = newTextViewFrame;
}
有时候是这样的: