iPhone -- [UITextField sizeToFit] 并不总是考虑光标
当我在正在编辑的 UITextfield 上调用 sizeToFit 时,大小对光标的反应方式不一致。有时是它的原因;有时是它的原因。有时则不然。如果没有,第一个字母的一部分将被剪掉。
有没有人找到解决这个问题的方法?
When I call sizeToFit on a UITextfield that is being edited, the size reacts in an inconsistent way to the cursor. Sometimes it accounts for it; sometimes it doesn't. If it doesn't, part of the first letter is clipped.
Has anyone found a way around this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚遇到了这个问题(在 iOS 5 中已修复)。我的解决方案是在宽度上添加 4 点填充:
有点乏味,但为我完成了工作。
I just ran into this problem (it's fixed in iOS 5). My solution was to add a 4-point padding to the width:
A bit tedious but got the job done for me.