What is the equivalent of Android's “Spannable” in Objective-C
Im on an iOS app that should able to highlight text, and make it clickable too. I read about NSAttributedString in iOS but it still more complicated than Spannable in android. Is there any other Objective c way to do that, if not; what should i do using NSAttributedString to highlight a paragraph word by word, and how to make my text clickable. Update: What exactly i want that each word should be clickable and can be highlighted as a single word in one paragraph. I found a perfect solution using UITextView , it will make every word in within the UITextView clickable. Firstly, Create an