Take a look at the -openURL:
method on UIApplication. It should allow you to pass an NSURL instance to the system, which will determine what app to open it in and launch that application. (Keep in mind you'll probably want to check -canOpenURL:
first, just in case the URL can't be handled by apps currently installed on the system - though this is likely not a problem for plain http://
links.)