Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Trying to load www.google.com using a WebView that has a subclassed UIViewController that is instantiated from my storyboard. It is to be pushed onto the screen when a UITableViewCell is clicked.

I'm using the following code, but I only get a white screen. Please help.

(I have no errors)

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSURL *url = [NSURL URLWithString:@"http://www.google.com"];
    NSURLRequest *request = [NSURLRequest requestWithURL:url];

    _webViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"WebView"];

    [self.navigationController pushViewController:_webViewController animated:YES];

    [_webViewController.webView loadRequest:request];
}

Thank you!

share|improve this question

1 Answer

up vote 2 down vote accepted

this won't work...

try the last line ([_webViewController.webView loadRequest:request];) in _webViewController itself..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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