Heey,
Does anybody know how to start safari from a ipad application?
I wan't an info view in my application with a button to my website. The 'things' application does it, so i know it is possible. Just don't know how.
Thanks
Heey,
Does anybody know how to start safari from a ipad application?
I wan't an info view in my application with a button to my website. The 'things' application does it, so i know it is possible. Just don't know how.
Thanks
On your button action place this code:
[
[UIApplication sharedApplication]
openURL:[NSURL URLWithString:@"http://www.yourwebsite.com"]
];
See UIApplication's -openURL:. This "does the right thing" for the http:, https:, tel:, and mailto: schemes.