解决方法
Apple在此处记录了该过程:
http://developer.apple.com/library/ios/#qa/qa2008/qa1629.html
基础归结为使用NSURL打开iTunes链接:
NSString *iTunesLink = @"http://itunes.apple.com/us/app/warehouse51/id364201184?mt=8"; [[UIApplication sharedApplication] openURL:[NSURL URLWithString:iTunesLink]];
注意:phobos链接通常已过时,因此请忽略您的链接看起来不像Apple的文档中的示例.它通常看起来像我在这里的更新示例中的那个.