Is SKStoreReviewController helpful in writing a review?

I implemented SKStoreReviewController. It gave a prompt to rate the app. If I click on the stars, it is showing two buttons titled Submit and Cancel. My app is still not in the App Store, so the Submit button is disabled.

I want to know what happens when Submit is clicked after my app was uploaded to the App Store. Will the rating be submitted directly or does it redirect to the App Store to write a review?

Upvotes: 3

Views: 2302

Answers (1)

user3151675
user3151675

Reputation: 58019

The Submit button of the prompt of requestReview() will redirect you to the Write a Review page of the app, with the stars section already filled out. You can optionally enter a title and a detailed review there. (The description text is misleading, the title is optional.)

From the Ratings, Reviews, and Responses - App Store page of Apple Developer:

Users will submit a rating through the standardized prompt, and can authenticate with Touch ID to write and submit a review.

"Write a Review" page with filled out stars

Upvotes: 5

Related Questions