I'm trying to create a simple app that needs webView to load an external website. The build seems to run find and no errors are returned but webView doesn't load the site - just a blank page.
Anyone know what the issue is?
This is the part of the AppnameViewController.h file with the site to load info:
Anyone know what the issue is?
This is the part of the AppnameViewController.h file with the site to load info:
Code:
-(void)viewDidLoad {
[super viewDidLoad];
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://bbc.co.uk"]]];
[NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(checkLoad) userInfo:nil repeats:YES];
[NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(checkNotLoad) userInfo:nil repeats:YES];
}