vote up 0 vote down star
1

Hello, is it possible to start an event when an UIWebView (Iphone) has finished loading the URL.

How can i find out, the current URL of the UIWebView?

Best regards,

Andreas

flag

27% accept rate

1 Answer

vote up 2 vote down

Yes, that's possible. Use the UIWebViewDelegate protocol and implement the following method in your delegate:

- (void)webViewDidFinishLoad:(UIWebView *)webView

If you want the URL, you can get the last request using the property request:

webView.request.URL
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.