Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SKStoreReviewController requestReview doesn't prompt for review

I want to use the new feature added in 10.3 to ask users for reviews. In the docs, apple states that when this method is called "a rating/review request view is displayed".

I am getting the rating view( where you can select how many stars to rate), but I am not able to write a review. I have to mention that I only tested in simulator.

Is this the correct behaviour?

like image 617
Radu Carlig Avatar asked Mar 28 '17 11:03

Radu Carlig


People also ask

How long does it take Apple to review an app?

On average, 90% of submissions are reviewed in less than 24 hours. You'll be notified by email of status changes. You can also check the review status of your submission in the My Apps section of App Store Connect or on the App Store Connect app for iPhone and iPad.


2 Answers

In development mode the “Submit” button is disabled. Once your app is in the App Store, this button becomes active and the user is given the option to write a review after they hit “Submit”.

like image 103
petehare Avatar answered Oct 21 '22 14:10

petehare


On development mode it always displays the prompt but doesn't actually do anything.

If you want to point people to write a review about your app:

To automatically open a page on which users can write a review in the App Store, append the query parameter action=write-review to your product URL.

Docs.

EDIT: The comment below is correct.

like image 28
Vaiden Avatar answered Oct 21 '22 16:10

Vaiden