vote up 7 vote down star
4

I'm building a table with some text that is HTML, so I am using a UIWebView as a subview of my custom table cells. I already ran into one problem - as I scrolled down in the table, it would take the UIWebViews a second to update. For example, I'd be viewing Cells at rows numbered 1, 2, and 3. I'd scroll down to say 8, 9, and 10. For a moment, the content of the UIWebView that was visible in cell #8 was the content from cell #1, the content in cell #9 was that from cell #2, and so on.

I learned that the problem was that UIWebViews simply render their text slowly. It was suggested to instead preload the content into the UIWebView as soon as I could instead of waiting until the table receives the cellForRowAtIndexPath. So now, I have a Domain Object which before just had the text content of the WebView - but now it actually has a reference to the UIWebView itself.

But now some of the content in the UIWebView renders, and when I scroll through the table the UIWebView shows only as a grey box. If I touch the grey box, it will actually receive the touch and update the WebView - for example if I touch a link (which I may or may not do, since the box is gray and it would be by a stroke of luck), the page that was linked to will be requested and displayed properly.

- (id)initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier {
if (self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) {
            // I suppose this isn't necessary since I am just getting it from the
            // Domain Object anyway
	content = [[UIWebView alloc] initWithFrame:CGRectZero];
	content.backgroundColor = [UIColor blackColor];
	[self addSubview:content];
	[content release];
}
return self;
}

// called by cellForRowAtIndexPath 
- (void)setMyDomainObject:(MyDomainObject*)anObject {
UIWebView *contentWebView = anObject.contentWebView;
int contentIndex = [self.subviews indexOfObject:content];
[self insertSubview:contentWebView atIndex:contentIndex];
}
flag

6 Answers

vote up 2 vote down check

One way to deal with this would be to use several UILabels, each with different fonts. Then strategically place them within the cell as to make them seem like contiguous text. I've seen this done in a UITableView with very good results.

Another performance problem may be that you are overiding UItableViewCell and it's init method. This almost always leads to poor performance in a UITableView. Instead just use the regular UITableViewCell instances and add subviews to it's contentView.

This has been covered extensively by Matt Gallagher: http://cocoawithlove.com/2009/04/easy-custom-uitableview-drawing.html

Another method described was to use Three20, which can give you styled text as well.

What you are attempting just can't be done with UIWebview, point blank.

Preloading won't help you, you are just slowing down the UI when UIWebviews are being rendered offscreen. You should always practice lazy loading on the iPhone.

A UIWebview has simply intolerable performance in a UITableView. You will need to use other means to accomplish your goal.

Unfortunately, NSAttributedString is unavailable in UIKit, which could easily solve your problem.

link|flag
I wound up accepting this one b/c of the reality that this was not something that can be done with a UIWebView. Personally I wound up abandoning the feature but I will revisit soon - and what I'm going to do instead of using a TableView is just simulate it using HTML and CSS, and putting it into a single WebView. Then I'll use a WebViewDelegate to sort of "intercept" clicks on links and determine whether to show other web content or do some other action in my application. – bpapa 2 days ago
vote up 0 vote down

How did you put a UIWebView In anyway?

link|flag
ps this should have been a new question (or comment), not a answer. I actually wound up abandoning that feature. however i'm going to revisit it eventually, and I'm considering not using a TableView at all and just putting all of the HTML into one WebView. – bpapa 2 days ago
vote up 2 vote down

If the content in the web view is restricted to styled text or hyperlinks you might want to take a look at the Three20 project: http://github.com/joehewitt/three20/tree/master

Its TTStyledText class has support for <b>, <i>, <img>, and <a> tags in the content. Probably more lightweight than webviews.

link|flag
vote up 2 vote down

This isn't answering the original question asked, but taking one step back and looking at the bigger picture, if you're trying to display a hyperlink in a table cell, does that mean when you click on it it opens a web browser? Would it be the same if you showed styled text in the table cell that looks like or hints at a link, but open a separate screen with a full-screen web view that lets you tap on the link?

link|flag
vote up 1 vote down

You said 'called by setRowAtIndexPath', you might mean 'cellForRowAtIndexPath' which is a UITableView method called when a row becomes visible and needs to create a cell. Make sure that in this method you are properly initializing and updating the cell contents.

link|flag
yeah, I was doing this from memory which isn't the best way to write questions. – bpapa Mar 16 at 5:41
Can you clarify 'when I start scrolling the web views don't update'. Are you scrolling within the webview or scrolling down the table view? What content is in the webview, and what should it be changing to? – Akusete Mar 16 at 5:47
Updated third paragraph of question better describe what I'm seeing. – bpapa Mar 16 at 15:20
vote up 0 vote down

Have you looked into overriding the -prepareForReuse method on your table cell subclass? If the cells don't seem to update when you scroll, it's possible that the content of reusable cells isn't being cleared and reset.

link|flag

Your Answer

Get an OpenID
or

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