Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rate my Application in iTunes within my Application in iPhone

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...

like image 899
ipraba Avatar asked Jan 29 '11 18:01

ipraba


People also ask

How do I rate an app on my iPhone?

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.

Can I see my iPhone apps on iTunes?

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).

Can I update iPhone apps through iTunes?

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.


2 Answers

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.

like image 54
PengOne Avatar answered Nov 15 '22 18:11

PengOne


NSURL* urlToMyApp = @"http://url.to.my/app/in/the/app/store";
[[UIApplication sharedApplication] openURL:urlToMyApp];
like image 25
Jason Coco Avatar answered Nov 15 '22 20:11

Jason Coco