Reputation: 1
I want to render the HTML content in the UIlabel/UITableView Cell in iPhone.
After a quite research got to understand we can use the NSAttributedStrings:initWithHTML to acheive this rather then using UIWebView.
But couldnt get sample code how to acheive this.
Can any one provide sample code ,which can be used in the UITable view cell for the html content.
thanks in advance
Upvotes: 0
Views: 133
Reputation: 10772
NSAttributedString
's initWithHTML:
method is only available on Mac OS X.
Upvotes: 2