(Xcode 6.1, iOS 7.1, iPhone)
UIWebView does not load the page. YES, I connected webView (to the .h file).
Did it 1000 times ... trying not to pull the hair out.
- (void)viewDidLoad {
[super viewDidLoad];
NSURL *url = [NSURL URLWithString:@"http://www.google.com"];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[self.myWebView loadRequest:requestObj];
}
Any ideas? I noticed that UIWebViews seem a bit flaky in Xcode 6.
source
share