Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有许多在 uiwebview 中使用正则表达式自动选择的链接。我正在 viewdidfinishload 方法中执行这些步骤。如何在每次选择下一个链接之前等待当前视图完成加载?我需要使用单独的 webview 对象还是可以用相同的方法完成所有这些操作。将自动选择几个单独的链接。任何帮助将不胜感激。谢谢你。
下面正如 Purva 所说,使用 web view delegate 进行加载请求或错误处理等。您可以在启动加载请求时显示 UIActivityIndicator 并在请求加载成功时停止它。
– webView:shouldStartLoadWithRequest:navigationType:
– webViewDidStartLoad:
– webViewDidFinishLoad:
– webView:didFailLoadWithError: