我们可以在UITextfiled中更改文本选择样式吗?

时间:2016-10-12 08:37:13

标签: ios objective-c uitextfield

是否可以更改文字选择方式?我在这里附上了截图(http://i.stack.imgur.com/foqBxm.png)。我需要像http://i.imgur.com/mRFrKyi.png这样设置简单的高亮显示。任何解决方案?

更新:
我通过添加以下代码解决了这个问题,

 NSDictionary* d = [textField typingAttributes];
NSMutableDictionary* md = [NSMutableDictionary dictionaryWithDictionary:d];

md[NSBackgroundColorAttributeName] = [UIColor greenColor];
[textfield setTypingAttributes:md];
            textfield.text = @"test";

谢谢!

0 个答案:

没有答案