Upvote:2

Aprove answer
- (void)configureView{
// Update the user interface for the detail item.
if (self.detailItem) {
    self.detailDescriptionLabel.text = [self.detailItem description];
    self.webView.delegate=self;
    NSString *html = @"";
    [...html stuff...]
    [self.webView loadHTMLString:html baseURL:nil];
}

Upvote:0

    webView = nil;

Credit Goes to: stackoverflow.com

Related question with same questions but different answers