I have a web database of text, that I'm packing and sending to an iPhone app via an SQLite3 db. There are a whole bunch of HTML entities in it, like ©
. Right now I'm displaying the text on the iPhone via a resizing UILabel embedded in a UIScrollView. However, the characters are just showing up as their literal strings, not their characters. What is the most elegant way to get them to show? If necessary I can preconvert the data with PHP before I package the SQLite db.
Thanks!