I was planning on using NSAttributedString to highlight portions of strings with the matching query of a user's search. However, I can't find an iOS equivalent of NSBackgroundColorAttributeName—there's no kCTBackgroundColorAttributeName. Does such a thing exist, similar to the way NSForegroundColorAttributeName becomes kCTForegroundColorAttributeName?
| |||||
feedback
|
|
No, such an attribute doesn't exist in Core Text, you'll have to draw your own rectangles underneath the text to simulate it. Basically, you'll have to figure out which rectangle(s) to fill for a given range in the string. If you do your layout with a Then iterate over the lines and use | |||||
feedback
|
|
maybe you can use UIWebView as a container and take advantage of CSS to highlight the words | |||
|
feedback
|