截断 UITextField 左侧的文本
我需要截断 UITextField 左侧的文本。因此,例如,它会显示为“......盲鼠,三只盲鼠,看看它们如何跑”而不是“三只盲鼠,三只盲鼠,看看......”。对于用户来说,字符串的结尾比开头更重要,因此这一点非常重要。
在 UILabel 中,通过将 UILabel 的 lineBreakMode 属性设置为 UILineBreakModeHeadTruncation,这很容易。然而,UITextField似乎没有这样的选项。
有谁知道解决这个问题的简单方法?
I need to truncate text on the left in a UITextField. So, for example, it would show as "... blind mice, three blind mice, see how they run" instead of "three blind mice, three blind mice, see...". It's more important for the user to end of the string, rather than the beginning, so this is quite important.
This is easy enough in a UILabel, by setting UILabel's lineBreakMode property to UILineBreakModeHeadTruncation. However, UITextField seems to have no such option.
Does anyone know an easy way around this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您通过调用以下代码使键盘可见,则有可能
[self.yourTextField成为FirstResponder];
然后从左侧剪切较大的文本。
您还可以使用以下代码隐藏键盘[如果您使用任何自定义键盘]
It is possible if you make keyboard visible calling following code
[self.yourTextField becomeFirstResponder];
Then larger text is clipped from left.
you can also hide keyboard [if you use any custom keyboard] using following code