tags:

views:

156

answers:

1

i am developing a iphone application in a view-based project,(not navigation) however i would like to click on a button in that application and able to link to a website,anyone can give me some hint how to make the view being transistion

+1  A: 

See This question & answer. Short version:

[someUIApplication openURL:[[NSURL alloc] initWithString: @"http://www.yahoo.com"]]
Olie