Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

All HI! It is necessary that the address changes in the UIWebView to check the domain, and if this changed - open the page in Safari. Is there a way to implement it?

share|improve this question

1 Answer

There is

- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType;

method in UIWebViewDelegate protocol. There you can check if domain is changed

NSURL* newURL = [request URL];

and if it does, return open Safari with this URL and return NO.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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