views:

93

answers:

1

Does anyone know if it's possible to open the safari browser with a static link , instead of using a UIWebview component.

If so how can i realize this.

+1  A: 

OpenURL can open many things, http and https are registered with safari.

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://stackoverflow.com"]];
slf
... if it's not an iTunes or google maps link.
Nikolai Ruhe
thanks, that worked.
jovany