I want to achieve this kind of style in UITextView
same like WhatsApp, Facebook and Instagram status. Where we can add a background color to text only parts and it will expand if we continue writing it.
Here is the image for more details. :
I want to achieve this kind of style in UITextView
same like WhatsApp, Facebook and Instagram status. Where we can add a background color to text only parts and it will expand if we continue writing it.
Here is the image for more details. :
Write following code in UITextViewDelegate method. On each word the textview delegate get call and you can apply the background color for textview text.
var attributedString = NSMutableAttributedString(string: textField.text)
attributedString.addAttribute(NSBackgroundColorAttributeName, value: UIColor.clear, range: NSRange(location: 0, length: textField.text.length))
textField.attributedText = attributedString