Is it possible to change a text selection style? I have attached screenshot here (http://i.stack.imgur.com/foqBxm.png). I need to set plain highlight like this http://i.imgur.com/mRFrKyi.png. Any solution?
Update:
I resolved by adding following code,
NSDictionary* d = [textField typingAttributes];
NSMutableDictionary* md = [NSMutableDictionary dictionaryWithDictionary:d];
md[NSBackgroundColorAttributeName] = [UIColor greenColor];
[textfield setTypingAttributes:md];
textfield.text = @"test";
Thanks!