Instead of loading a URL into a UIWebView we can also launch Safari to display it:
1 2 3 |
UIApplication *mySafari = [UIApplication sharedApplication]; NSURL *myURL = [[NSURL alloc]initWithString:@"http://www.mydomain.com"]; [mySafari openURL:myURL]; |
The method returns a BOOL value which will feed back if this operation was a success or not:
1 2 3 4 |
if (![mySafari openURL:myURL]) { // opening didn't work } |
openURL can open phone numbers (tel:), mailto: links, http: and https: links.