views:

161

answers:

3

I would like to add a button "Vote Us" that opens App Store and brings automatically users to my app review page where they can vote my app.

How can I do it?

A: 

This might help:

http://inchoo.net/iphone-development/how-to-launch-app-store-from-my-iphone-application/

Salgar
it redirects to the app page. It's ok, but I see some apps redirecting directly to the review page
Ricibald
what apps do that?
progrmr
fruit ninja. when you take the third game it suggests to review the game
Ricibald
+1  A: 

I think the easiest way to access specific pages on the App Store is to use the URLs, which are opened automatically on the iPhone using the Store app. For example, sending the user to http://itunes.apple.com/gb/app/polytune/id364009203?mt=8 takes them to the PolyTune page in the App Store. I'm not sure if there is a more direct way to achieve it.

ok, but I see some apps redirecting directly to the review page
Ricibald
Ricibald
A: 

Use this:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:
     @"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=YOUR_APP_ID&mt=8"
]];
Ricibald