简体   繁体   中英

HTML special characters in UITableViewCell iOS

I am getting data in JSON, and it has HTML formatted text (With special characters). I am parsing it, and I need to display it in a UITableView as the rows.

Can you help me how to do it?

Any pointers would be appreciated.

Thanks

Can You elaborate question? One of the simple way is to :

[cell.textLabel setText: [responseString JSONValue]objectForKey:@"response"] ;

Parse the json value to get your desired output.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM