-5

我在我的视图中添加了一个 UITextView,它覆盖了我整个视图的 80% 以上。当我单击文本视图并开始对其进行编辑时,在键盘下隐藏了几行文本后,一旦文本触摸键盘,如何自动向上滚动。

在此处输入图像描述

TIA

4

2 回答 2

1

您可以使用下面给出的这些方法...

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardDidShow:) name:UIKeyboardDidShowNotification object:self.view.window]; 
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardDidHide:) name:UIKeyboardDidHideNotification object:nil];

 [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardDidShowNotification object:nil];
[[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardDidHideNotification object:nil];

还要检查谷歌,你会更容易地得到解决方案。

于 2012-08-14T10:13:31.320 回答
0

请参考下面的链接您是否使用 textview 。只需使用 textview 而不是 textfield 。并按照下面的视频

于 2012-08-14T10:25:42.833 回答