user1374342
user1374342

Reputation: 1

IPhone regarding HTML content in UITableVIew

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

Answers (1)

Jack Lawrence
Jack Lawrence

Reputation: 10772

NSAttributedString's initWithHTML: method is only available on Mac OS X.

Upvotes: 2

Related Questions