Alternatives to UIWebView for rich content?

Posted by ojreadmore on Stack Overflow See other posts from Stack Overflow or by ojreadmore
Published on 2010-05-14T21:39:37Z Indexed on 2010/05/14 21:44 UTC
Read the original article Hit count: 216

Filed under:
|
|

In my app, I am displaying 4 "tabs", each are local content through a UIWebView. I create HTML markup from my simple data. This is slow to load and I'm trying to speed it up.

I'm using UIWebView to accomplish these: 1. hyperlinks 2. some styling - font colors 3. HTML tables

Writing my own class to handle this is okay for (1.) hyperlinks - I can use a touch event to call a method. And (2.) styling - I can use UILables to do basic formatting, no biggie here.

BUT what I really love about the UIWebViews is the (3.) HTML tables! I find it troublesome to line up the UILabels in a way that mimics HTML Tables, for instance, one cell's height in a row changes the height of all cells.

I'm looking for another perspective or knowledge of an alternative.

© Stack Overflow or respective owner

Related posts about xcode

Related posts about objective-c