views:

21

answers:

2

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

A: 

On your button action place this code:

[
    [UIApplication sharedApplication] 
       openURL:[NSURL URLWithString:@"http://www.yourwebsite.com"]
];
Pablo Santa Cruz
A: 

See UIApplication's -openURL:. This "does the right thing" for the http:, https:, tel:, and mailto: schemes.

Joshua Nozzi