iOS 7 UIWebView doesn't load webpage

一个人想着一个人 提交于 2019-12-09 09:50:06

问题


My app uses UIWebview, and it works well in iOS 5 and iOS 6. However, it doesn't load the webpage in iOS 7 when I build in Xcode 5 and run the same code.

 - (void)webViewDidFinishLoad:(UIWebView *)webView {}
 - (void)webViewDidStartLoad:(UIWebView *)webView {}
 - (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error {}

All delegate function is not called. But I do set delegate in xib file and code

self.theWebView.delegate = self;

I didn't find any information via google. Thank you for your help.


回答1:


I moved the loadRequest method to the completion handler of a presentViewController and it works in iOS 5, 6 and 7:

[self presentViewController:gwvc animated:YES completion:^(void){
    [gwvc.wv loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.walkjogrun.net/about/eukanuba.html"]]];
}];



回答2:


I found the root cause. maybe I incorrectly used UIWebView, but it works in iOS5 and iOS6. I don't know why it works in earlier iOS versions...

Moreover, it works in iOS7 when I build code with SDK 6.1.

Here's my old code.

     RechargeWebPageViewController *webPageViewController;
    webPageViewController = [[  RechargeWebPageViewController alloc] initWithNibName:@"WebPage" bundle:nil];
    if (webPageViewController != nil) {
        webPageViewController.hidesBottomBarWhenPushed = YES;
        webPageViewController.delegate=self;
        [self.navigationController pushViewController:webPageViewController animated:YES];
        NSURL *url = [NSURL URLWithString:@"https://xxx.php"];

        NSMutableURLRequest *request = [[NSMutableURLRequest alloc]initWithURL: url];
        [webPageViewController loadRequest:request];
        [request release];
   }

I moved the loadRequest from the viewDidLoad method to the ViewWillAppear method, then it worked. I think maybe UIWebView is not initialized correctly in my old code for iOS7.



来源:https://stackoverflow.com/questions/18949857/ios-7-uiwebview-doesnt-load-webpage

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!