Closed mceruzzi-denodo closed 9 years ago
I copied and pasted this into a single view app with only a webview. Here is your problem...
The code is fine, you need to change the string to @"http://www.yahoo.com"
It appears it won't work without the http://
^Thanks!
I can't get my UIWebView to show anything. Even when I physically hardcode:
NSString string = @"www.yahoo.com"; NSURL url= [NSURL URLWithString:string]; [self.web loadRequest:[NSURLRequest requestWithURL:url]];
Into the detailViewController's viewDidLoad method. i set it's delegate as the detailViewController and created an IBOutlet. I'm at a loss. Any ideas?