Hey, is there a tutorial on making the popup that says you know, "please leave us a review in the app store" in an iOS app? I cant find any :/
feedback
|
|
I personally used this one. I think it works really well. http://arashpayan.com/blog/2009/09/07/presenting-appirater/ | |||
|
feedback
|
|
It's quite easy. Create an action
This will launch the AppStore app and take the user directly to the page where s/he can rate and review your app. If you want this to happen after, say, 20 times the user loads your app, then you can add an alert in
This assumes you've set up the launchCount in the AppDelegate:
| |||||||||||
feedback
|
|
Well, here's one. These are usually done as simple UIAlertViews with three buttons (Review Now, Later, Never) with preferences stored in NSUserDefaults to indicate whether the user has already done so, whether they never wish to be asked again, etc. | |||
|
feedback
|
|
iRate is also another good library to present "rate this app" dialog boxes. | |||||||||||
feedback
|
|
There is code missing if you want user to review your app after 20 times. The missing part is
| |||
|
feedback
|