UITextField 从文本末尾开始
我有一个显示长文本字符串的 UITextField。问题是,当我第一次打开包含 UITextField 的视图时,它会自动显示文本的结尾;我想让它显示开始。
我阅读了 Apple 开发中心的 UITextField 类参考,但似乎没有任何内容允许我更改它。我该怎么做?
I have a UITextField
that displays a long text string. The problem is that when I first open the view containing the UITextField
, it automatically shows the end of my text; I want it to show the beginning.
I read the UITextField
Class Reference on the Apple dev center, but nothing seems to allow me to change it. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UITextField
不支持此功能。您可能会考虑切换到UITextView
(它有一个scrollRangeToVisible:
方法)。UITextField
does not support this. You might consider switching toUITextView
(which has ascrollRangeToVisible:
method).