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?
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].
[[UIApplication sharedApplication] openURL:myURL]