Esqarrouth
Esqarrouth

Reputation: 39201

How to link an application to App Store?

Don't get this confused with the itunes linking. I know how to send a user to iTunes Store app with purple logo and that is not I want. I want to send the user to App Store app with blue logo.

itms://itunes.apple.com/us/app/myappname/myappid

Already checked this post, didn't answer my question: How to link to apps on the app store

Upvotes: 0

Views: 68

Answers (1)

Gary Riches
Gary Riches

Reputation: 2875

The follow link sends someone to the App Store on iOS and allows them to review my app. Change the parameters and it will go to the App Store for your app:

itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Bouncing+Ball+Games&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&id=926193671

Sample code to open within an app:

NSString *iTunesLink = @"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Bouncing+Ball+Games&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&id=926193671";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:iTunesLink]];

Upvotes: 1

Related Questions