Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SKStoreReviewController requestReview() may or may not present and alert?

I'm taking a look at the new requestReview() API that uses SKStoreReviewController. The documents state:

"Although you should call this method when it makes sense in the user experience flow of your app, the actual display of a rating/review request view is governed by App Store policy. Because this method may or may not present an alert, it's not appropriate to call it in response to a button tap or other user action."

Does anyone have any experience using this API. What exactly are the factors that determine if the rating view is shown or not? I'm guessing it's not shown if called too frequently.. Anybody have any insight on this? Thanks!

like image 774
Kex Avatar asked Feb 01 '17 09:02

Kex


2 Answers

You're right that it won't show if called too frequently.

SKStoreReviewController will only allow prompting a user to review your application 3 times at most, even if you ship more versions than that during the year.

There might be more restrictions beneath the surface as well.
Source: http://daringfireball.net/2017/01/new_app_store_review_features

like image 151
Olle Lind Avatar answered Nov 14 '22 12:11

Olle Lind


According to iOS Human Interace Guildelines

The system automatically limits the display of the prompt to three occurrences per app within a 365-day period.

like image 20
mohamede1945 Avatar answered Nov 14 '22 13:11

mohamede1945