我有以下这段代码,它可以UIWebView
在一个 Wifi 上正确加载,但不能在另一个 WiFi 上加载。它再次在 3G 上正常工作。
tempWebView = [[UIWebView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
tempWebView.delegate = self;
tempWebView.scalesPageToFit = YES;
[tempWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"www.example.com/Contact.html"]]];
我试过NSLogging
了,似乎webViewDidFinishLoad:
没有在第二个 Wifi 上被调用。
我可以责怪网络 2 还是我需要检查什么?