UITextField 文本的有条件颜色部分
我有一个 UITextField,我需要将某些特定单词着色为灰色
有没有直接的解决方案?
如果没有,我想如果我获得了 setTextColor
方法的源代码,请尝试有条件地更改其实现(可能通过 Category
甚至 子类化
)。
I've a UITextField, I need to color some specific word in a gray
Is there a direct solution?
If not, I think If I got the Source code for setTextColor
method, try to conditinoally change its implementation (may be through a Category
or even subclassing
).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是不可能的。要实现这种功能,您必须使用 CoreText。
有关更多信息,请阅读这个精彩的教程:http://www.cocoanetics.com/ 2011/01/befriending-core-text/
It's not possible as is. To implement that kind of feature you have to use CoreText.
For more info read this great tutorial: http://www.cocoanetics.com/2011/01/befriending-core-text/