I have added a UIWebView to my app, in order to allow users to browse internet site, but the UIWebView always appears blank even if I hardcode the URL.
Please can anyone tell me where is the wrong in my code:
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
if(!webView)
{
self.webView = [[UIWebView alloc]init];
}
webView.delegate = self;
NSString *urlAddress = @"http://www.google.com";
//Create a URL object.
NSURL *url = [NSURL URLWithString:urlAddress];
//URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
//Load the request in the UIWebView.
[webView loadRequest:requestObj];
}
- (void)webViewDidStartLoad:(UIWebView *)webView
{
NSLog(@"Started");
}
- (void)webViewDidFinishLoad:(UIWebView *)webView
{
NSLog(@"Stopped");
}
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error
{
NSLog(@"Error");
}