I have to provide a link in my app where the user touches on it it will take me to the itunes Appstore page of my application where the user can rate the Application. I think other apps try to access the Appstore Application in the device and pass the corresponding url of the application in itunes... How to do this? Any ideas...
In the App Store, tap your profile > Purchased. Tap the app, go to Ratings & Reviews, and enter the stars you want to give the app. Tap Write a Review to leave a written review of the app.
Go to the iTunes Store on your computer. Launch iTunes. In the source list on the left, click the iTunes Store. Click the Apps link, and the Tunes App Store appears. Click the iPhone tab at the top of the screen (as opposed to the iPad tab).
Updating iPhone apps via iTunes lends an added level of clarity to the process because you can view the app information on a full computer screen before deciding whether to proceed. You can accept all of the available updates at the same time, or just take them one by one.
Here's my method; this goes straight to the App Store and to the Review/Rate page for my app:
- (IBAction)rateGame {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=409954448"]];
}
Just change the id at the end (409954448) to the id for your app. Also, if you track the launch count or something, you can trigger this method after, say 12 launches to increase ratings. I added this in my update and in about 2 weeks it generated 5 ratings. Very useful.
NSURL* urlToMyApp = @"http://url.to.my/app/in/the/app/store";
[[UIApplication sharedApplication] openURL:urlToMyApp];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With