Protocol: UIWebViewDelegate
Overview
The UIWebViewDelegate protocol defines methods that a delegate of a UIWebView object can optionally implement to intervene when web content is loaded.Sent if a web view failed to load a frame.Sent before a web view begins loading a frame.Sent after a web view finishes loading a frame.Sent after a web view starts loading a frame.
Instance Method Summary (collapse)
-
- webView:didFailLoadWithError:
Sent if a web view failed to load a frame.
-
- webView:shouldStartLoadWithRequest:navigationType:
Sent before a web view begins loading a frame.
-
- webViewDidFinishLoad:
Sent after a web view finishes loading a frame.
-
- webViewDidStartLoad:
Sent after a web view starts loading a frame.
Instance Method Details
- (Object) webView(webView, didFailLoadWithError:error)
Sent if a web view failed to load a frame.
- (Boolean) webView(webView, shouldStartLoadWithRequest:request, navigationType:navigationType)
Sent before a web view begins loading a frame.
- (Object) webViewDidFinishLoad(webView)
Sent after a web view finishes loading a frame.
- (Object) webViewDidStartLoad(webView)
Sent after a web view starts loading a frame.