I have a very simple UIWebView with content from my application bundle. I would like any links in the web view to open in Safari instead of in the web view. Is this possible?
|
feedback
|
|
Add this to the UIWebView delegate: (edited to check for navigation type. you could also pass through
| |||||||||||
feedback
|
|
One quick comment to user306253's answer: caution with this, when you try to load something in the UIWebView yourself (i.e. even from the code), this method will prevent it to happened. What you can do to prevent this (thanks Wade) is:
You might also want to handle the | |||||||
feedback
|