How to launch Safari and open URL from iOS app
Here’s what I did: I created an IBAction in the header .h files as follows: – (IBAction)openDaleDietrichDotCom:(id)sender; I added a UIButton on the Settings page containing the text that I want to link to. I connected the button to IBAction in File Owner appropriately. Then implement the following: Objective-C – (IBAction)openDaleDietrichDotCom:(id)sender { [[UIApplication sharedApplication] openURL:[NSURL … Read more