I am using a instance of UIWebView to process some text and color it correctly, it gives the result as HTML but rather than displaying it in the UIWebView I want to display it using Core Text with a NSAttributedString.

I am able to create and draw the NSAttributedString but I am unsure how I can convert and map the HTML into the attributed string.

I understand that under Mac OS X NSAttributedString has a initWithHTML: method but this was a Mac only addition and is not available for iOS.

I also know that there is a similar question to this but it had no answers, I though I would try again and see whether anyone has created a way to do this and if so, if they could share it.

link|improve this question

The NSAttributedString-Additions-for-HTML library has been renamed and rolled into a framework by the same author. It's now called DTCoreText and includes a bunch of Core Text layout classes. You can find it over here – Brian Douglas Moakley Jan 4 at 14:49
feedback

2 Answers

up vote 7 down vote accepted

There is a work-in-progress open source addition to NSAttributedString by Oliver Drobnik at Github. It uses NSScanner for HTML parsing.

link|improve this answer
Thanks, that's is what I was looking for. – Joshua Jan 11 '11 at 6:48
THIS IS AMAZING! – Sam Soffes Jan 14 '11 at 6:38
The URL above is now dead. – Justin Tanner Dec 28 '11 at 1:39
Oliver broke a lot of links (including several on his own web site) when he renamed and expanded his project. I have updated the answer with a new (and working) link. – Ingve Feb 17 at 16:56
Requires min deployment of iOS 4.3 :( None-the-less, very impressive. – Oh Danny Boy Mar 20 at 17:37
feedback

The only solution you have right now is to parse the HTML, build up some nodes with given point/font/etc attributes, then combine them together into an NSAttributedString. It's a lot of work, but if done correctly, can be reusable in the future.

link|improve this answer
1  
If the HTML is XHTML-Strict, you could use NSXMLDOcument and friends to help with the parsing. – Dylan Lukes Nov 18 '10 at 18:37
How would you suggest I go about building up the nodes with given attributes? – Joshua Nov 18 '10 at 19:11
1  
That's an implementation detail. However you parse the HTML, you have access to each attribute for each tag, which specifies things like a font name, size, etc. You can use this information to store the relevant details you'd need to add to the attributed text as attributes. Generally, you need to get yourself familiar with parsing first before tackling such a task. – jer Nov 18 '10 at 21:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.