gpt4 book ai didi

ios - 如何在 UIWebView 加载时禁用操作?

转载 作者:行者123 更新时间:2023-11-28 20:43:51 29 4
gpt4 key购买 nike

我创建了以下代码来检查加载页面时是否存在互联网连接。如果没有;将弹出一条消息。如果有,则不会弹出任何内容。我遇到的问题是,当有 Internet 连接并且 UIWebView 正在加载时,同时我按下其他按钮(如后退或前进)时,会弹出没有 Internet 连接的消息!知道我怎么能避免这种情况吗?有没有办法在我的 UIWebView 加载时禁用其他操作?

代码:

- (void)webView:(UIWebView *)NBC didFailLoadWithError:(NSError *)error
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"No Internet Connection"
message:@"Please verify your connection"
delegate:self cancelButtonTitle:@"Dismiss"
otherButtonTitles:/*@"Verify", */nil];
[alert show];
[alert release];
}

非常感谢您的帮助!

最佳答案

-(void)webViewDidStartLoad:(UIWebView *)webView {

[buttonForward setUserInteractionEnabled:NO];

}


- (void)webViewDidFinishLoad:(UIWebView *)webView {

[buttonForward setUserInteractionEnabled:YES];

}

关于ios - 如何在 UIWebView 加载时禁用操作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7251235/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com