How to connect to website or Safari in iOS app

I am using Xcode to develop an iOS application, and I need to know how to associate a website with a button to open the application. I want o to have a popup panel with buttons to return to a separate screen and a button to save the link to another place. Is there any way to open a website or safari link with my application?

+3
source share
1 answer

You can open the website directly using the UIWebView object in your application.

You can force Safari to open the website by calling something like [[UIApplication sharedApplication] openURL:myURL].

+4
source

All Articles