2011-01-07 78 views

回答

6

剛的OpenURL你的用戶ID,例如,我的是http://itunes.apple.com/us/artist/wrightscs/id387614647

您可以轉到在iTunes的應用程序之一,點擊您名稱和所有的應用程序將出現,右鍵單擊您的名字並複製鏈接。

NSString *urlText = @"http://itunes.apple.com/us/artist/vendor/id000000"; 
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlText]]; 
+0

也感謝,偉大的答案 – 2011-01-07 03:24:42

5

按照WrightCS的URL約定構建自己的url,然後使用這一行代碼打開它。別擔心,iOS智能足以爲您打開iTunes應用程序。

//aUrl is a NSURL instance  
[[UIApplication sharedApplication] openURL:aUrl]; 

有關如何構建這些網址,看看這個偉大的職位的完整列表:How can I link to my app in the App Store (iTunes)?

+0

太容易了,謝謝。 – 2011-01-07 03:24:14

相關問題