为什么 UITextView 中光标没有到达帧末尾
感谢大家,
我的问题看起来很愚蠢,但我对 UITextView 有问题。
为什么光标没有到达结束帧而不是滚动。
Thanks to all,
My question looks stupid but I have problem with UITextView.
Why cursor doesn't reach to the end frame and than scroll.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是 UITextView 的设计方式。其逻辑与打字机基本相同。您始终会看到下面的空白。如果您想删除该空格,有一个 @property 可以帮助您删除该空格:
-setContentInset:(UIEdgeInset)inset
请记住 UITextView 是 UIScrollView 的子类。您可以通过更改设置来实现很多自定义功能。
This is how the UITextView has been designed. It's basically the same logic as a typewriter. You see white space below all the time. If you want to remove that space, there's a @property that could help you remove that:
-setContentInset:(UIEdgeInset)inset
Remember that UITextView is a subclass of UIScrollView. There's a lot of customization you can achieve by changing settings.