我在 UIWebView 中加载 URL 时遇到了非常小的问题。
我有一个 UIButton ,点击它后,我添加了 UIView ,其中包含 UIWebView 、UIButton 和 >标题栏 。使用的代码如下-
[self.view addSubview:vwOnline];
vwOnline.bounds = self.view.bounds;
//Load webview
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat"%@", objWine.strOnlineURL]];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[wbvwOnline loadRequest:request];
- (void)webViewDidStartLoadUIWebView *)webView
{
//Show activity indicator
[indicator startAnimating];
}
- (void)webViewDidFinishLoadUIWebView *)webView
{
//Remove Activity indicator
[indicator stopAnimating];
[indicator removeFromSuperview];
}
- (void)webViewUIWebView *)webView didFailLoadWithErrorNSError *)error
{
NSLog(@"Error - %@", error);
UIAlertView *alert = [[UIAlertView alloc] initWithTitle"Find A Vino" message"Error while loading request." delegate:self cancelButtonTitle"OK" otherButtonTitles:nil, nil];
[alert show];
alert.tag = 1;
//Remove Activity indicator
[indicator stopAnimating];
[indicator removeFromSuperview];
}
通过执行上述代码,大多数时候 UIWebView 不会加载我在对象 objWine.strOnlineURL 中传递的 URL 。如果我单击后退按钮并再次单击按钮以加载 URL ,它将进入 - (void)webViewUIWebView *)webView didFailLoadWithErrorNSError *)error UIWebView 的委托(delegate)方法。
如果有人知道解决方案,请帮助我。
Best Answer-推荐答案 strong>
而不是在您的 button 上添加您的 webview 每次点击。你为什么不把你的 webview 添加到你的 viewDidLoad 和 hide 和 show 它在你的 button 点击。
关于iphone - UIWebView 不加载 URL,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/14256484/
|