views:

62

answers:

1

I have a web view that displays a web page but I want all links on that page to open in the default browser. How would I do this?

+3  A: 

Implement the WebPolicyDelegate so that any attempts to navigate are cancelled, and the URL opened in the default browser.

Mike Abdullah