ios6 - iOS, url schemes for app store both for specified developer's apps and for his concrete app to update in iOS 6? -
this question answered in ios 6 these solutions doesn't work. current solutions 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 in ios 6.0.1, no error ios 6.1
this works on end (xcode 5 - ios 7 - device!):
for app itself:
itms-apps://itunes.apple.com/app/idyour_app_id
code snippet (you can copy& paste it):
#define your_app_store_id 545174222 // change app id static nsstring *const ios7appstoreurlformat = @"itms-apps://itunes.apple.com/app/id%@"; [nsurl urlwithstring:[nsstring stringwithformat: ios7appstoreurlformat, your_app_store_id]]; // contain right link
for developer can use this:
https://itunes.apple.com/artist/idyour_artist_id
you can your_artist_id itunes connect or link on 1 of apps (there "view more developer" , copy number after "id" on link itself).
Comments
Post a Comment