Reputation: 535
I need a functionality like in the iphone pdf reader.
i want that user select some text content and that content should be highlighted with yellow color.
Currently i am using text view and want to know that can i achieve same functionality in it. or i have to shift to pdf ?
Please tell that how to achieve that in either of the two.
Upvotes: 1
Views: 332
Reputation:
Take a look at EGOTextView
A drop-in replacement for UITextView that amongst other things supports attributed strings. This would allow you to achieve your aim of selecting text, and then applying a style to that selection such as a yellow highlight.
Upvotes: 0