在 UITextView 中滚动文本

发布于 2024-11-15 20:12:42 字数 292 浏览 1 评论 0原文

我有一个 UITextView:当我隐藏键盘时,我使用此代码返回到文本的起点,

-(BOOL)textViewShouldBeginEditing:(UITextView *)textView {
    ...
    NSRange range = NSMakeRange(0,1);
    [note scrollRangeToVisible:range];
    return YES; 
}

但是当我写入(例如,4 行)时如何滚动文本?所以没有覆盖键盘上的文字,

感谢大家

I have a UITextView: When I do hide the keyboard, I return to the starting point of the text with this code

-(BOOL)textViewShouldBeginEditing:(UITextView *)textView {
    ...
    NSRange range = NSMakeRange(0,1);
    [note scrollRangeToVisible:range];
    return YES; 
}

but how can I do to scroll the text when I write, for example, 4 lines? so does not cover the text from the keyboard

thanks to all

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凹づ凸ル 2024-11-22 20:12:42

您可以将 contentInset 设置为键盘的高度。

监听 UIKeyboardWillShowNotification 通知。实现这样的事情:

CGFloat keyboardHeight = ... // The userInfo variable contains keyboard info.
[textView setContentInsets:UIEdgeInsetsMake(0.0, 0.0, keyboardHeight, 0.0)];

这将自动为您滚动文本视图。

You can set the contentInset to the height of the keyboard.

Listen for the UIKeyboardWillShowNotification notification. Implement something like this:

CGFloat keyboardHeight = ... // The userInfo variable contains keyboard info.
[textView setContentInsets:UIEdgeInsetsMake(0.0, 0.0, keyboardHeight, 0.0)];

That will scroll the text view automatically for you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文