對於View應用程序頁面:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.apple.com/us/app/APPNAME/idApp?mt=8&uo=4"]];
//APPNAME = Application name, idApp = Application unique id
對於視圖應用程序從開發
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.apple.com/us/artist/DEVNAME/idDEVID?uo=4"]];
DEVNAME = Developer name in small chars, idDEVID = developer id, you can get it from iTunes.
更新1
如果您的應用程序ID,然後你可以得到你的開發者ID像,
https://itunes.apple.com/lookup?id=YourAnyAppID
運行此網頁瀏覽器,並響應搜索artistViewUrl
的話,這會給你URL
,那列出所有應用程序是從同一個開發者
只要記住,更換http
到itms
停止重定向。
更新2
列表開發的所有應用,從:appstore.com/{developername}
。
獲取我們的單一應用鏈接,從:appstore.com/appname
。您可以在應用發佈時獲取這些內容。
這可能會有所幫助。
HTH,享受編碼!
我已經添加了另一個答案,因爲我認爲ViralSavaj的答案已過時。我的也很簡單。 – owlswipe