Reputation: 1000
I've run into a very bizarre bug on iOS versions below 8.3. Essentially what's happening is iOS 8.3 emojis are causing UITextView
s inside UITableViewCell
s to behave weirdly. I have a UITableView
and as it's scrolled and the cells are recycled, any UITextView
s that previously contained an iOS 8.3 emoji start displaying their contents very weirdly. The vertical spacing is weird, spacing between characters is weird, and some words become invisible.
To solve this, I'd like to replace all occurrences of 8.3 emojis with something else. Is there a way to detect only emojis specific to iOS 8.3?
Upvotes: 0
Views: 205