gpt4 book ai didi

ios - 检测 View 是否由于按下后退按钮而正在加载

转载 作者:行者123 更新时间:2023-11-30 12:26:05 25 4
gpt4 key购买 nike

是否可以检测是否因为按下后退按钮而出现 View 。例如,对于这个层次结构,VC1 -> webViewController -> VC3,如果在 VC3 中,我按下后退按钮,我想检测到 webViewController出现。我的目标是在 shouldStartLoadWith 方法中使用它,以避免按下后退按钮时刷新页面。

最佳答案

请在webViewController中使用它

  - (void)webViewDidFinishLoad:(UIWebView *)webView
{
//This Check is for if still webview is Loading the page or content
if (webView.isLoading) {
NSLog(@"your webview is still loading");
return;
}
else {
//this is for when its finish loading
NSLog(@"your webview is loaded completely");
}
}

关于ios - 检测 View 是否由于按下后退按钮而正在加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44201985/

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