1

This question was already answered but in iOS 6 all these solutions doesn't work. My current solutions sometimes doesn't work too:

https://itunes.apple.com/us/artist/developer_name/developer_id

https://itunes.apple.com/us/app/app_name/app_id

the problem is in iOS 6.0.1, but no error with iOS 6.1

4

1 回答 1

1

这适用于我(Xcode 5 - iOS 7 -设备!):

  1. 对于应用程序本身:

    itms-apps://itunes.apple.com/app/idYOUR_APP_ID
    

    代码片段(您可以复制并粘贴它):

    #define YOUR_APP_STORE_ID 545174222 // Change this to your app ID
    
    static NSString *const iOS7AppStoreURLFormat = @"itms-apps://itunes.apple.com/app/id%@";
    [NSURL URLWithString:[NSString stringWithFormat: iOS7AppStoreURLFormat, YOUR_APP_STORE_ID]]; // Would contain the right link
    
  2. 对于开发人员,您可以使用它:

    https://itunes.apple.com/artist/idYOUR_ARTIST_ID
    

您可以从您的 iTunes Connect 或您的一个应用程序上的链接获取 YOUR_ARTIST_ID(有一个“查看此开发人员的更多信息”并复制链接本身上“id”后面的数字)。

于 2014-01-11T09:45:04.547 回答