views:

644

answers:

1

Hello there, I am having a problem with UIWebView. I'd like to render my own html code in it. When I add a webview as a subview and put in some html code it renders just fine. When it gets down to some optimized drawing of tableview cell with the drawRect method the problem pops up. Drawing UIView descendants works pretty well this way. It's even possible to load a URL with the loadRequest method, setting the delegate, conforming to the UIWebViewDelegate protocol and redrawing the table cell with setNeedsDisplay when webViewDidFinishLoad is called. It does show, but when it comes to loadHTMLString, nothing shows up, only a white rect. Due to performance reasons I have to do the drawing in the drawRect method.

Any ideas? Thanks in advance Nick

Example snippet code for the html code being loaded by a UIWebView:

NSString *html = @"<html><head><title>My fancy webview</title></head><body style='background-color:green;'><p>It somehow seems<h2 style='color:black;'>this does not show up in drawRect</h2>!</p></body></html>"; 
[webView loadHTMLString:html baseURL:nil];

Snippet for the drawRect method:

- (void)drawRect:(CGRect)aRect {
    CGContextRef context = UIGraphicsGetCurrentContext();

    [[webView layer] renderInContext:context];
}
A: 

I'm having the same problem, does anybody have a clue how to do this?

I'm trying to add a UIWebView to a custom UITableCell drawContentView

- (void)drawContentView:(CGRect)r {
   CGRect webview_rect = CGRectMake(0, 0, 290.0, 50.0);
   [bannerWV drawRect:webview_rect];
}
FelipeOliveira