I have a string coming in from the Internet in my app that looks like this:
Last update on 09:25 am<br><b>Auction 1</b><br>ebay.com<br><br>
I set that to an NSString *foobar. The problem is, when I write the text to a UITextView like this "txtInfo.text = foobar;" then the string comes out like this:
Last update on 09:25 am
The rest is completely cut off at the & symbol. I need it to display on the next line "Auction 1" and then another line that says "ebay.com". Anyone have any ideas how I can pull out what I need? I am at a loss right now. The & symbol is killing me.
Ethan
Last update on 09:25 am<br><b>Auction 1</b><br>ebay.com<br><br>
I set that to an NSString *foobar. The problem is, when I write the text to a UITextView like this "txtInfo.text = foobar;" then the string comes out like this:
Last update on 09:25 am
The rest is completely cut off at the & symbol. I need it to display on the next line "Auction 1" and then another line that says "ebay.com". Anyone have any ideas how I can pull out what I need? I am at a loss right now. The & symbol is killing me.
Ethan