iphone - Is there a method somewhere supplied by Apple which will trigger when a UIWebView changes pages? -
I am trying to resize the webview when the website changes to see if it matches that one Is what I am looking for, what do I need to see the URL of UIWebview Or just change everything in
If you implement the protocol in your view controller, (UIWebView *) webView should startLoadWithRequest: (NSURLRequest *) Request Navigation Type: (UIWebViewNavigationType) Navigation Type P> and get the URL as a string:
NSString * urlString = request.URL.absoluteString;
Update
Make sure that you have set the property on UIWebView .
Comments
Post a Comment