是否可以更改文字选择方式?我在这里附上了截图(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";
谢谢!