Skip to content

Store Review Controller

levching edited this page Apr 15, 2020 · 4 revisions

You can ask users to rate and review your app at appropriate times throughout the user experience. Make the request when users are most likely to feel satisfaction with your app, such as when they’ve completed an action, level, or task. Make sure not to interrupt their activity.

To give users an easy way to provide feedback on the App Store without leaving your app, use the ISN_SKStoreReviewController. You can prompt for ratings up to three times in a 365-day period. Users will submit a rating through the standardized prompt, and can authenticate with Touch ID to write and submit a review.

Ensure that your support contact information is easy to find in your app and on your App Store product page. It gives users a direct way to reach you if they encounter difficulties, and gives you an opportunity to resolve negative experiences that may otherwise lead to poor reviews.

See the example below:

using SA.iOS.StoreKit;
...
ISN_SKStoreReviewController.RequestReview();

The result will be a popup similar to the one on a picture below:

StoreReviewController

You can't get the result of the review request, or find out how many stars user has given your app. The reason is, Apple wants users to only do a fair review, and this is prohibited for app developers to give any kind of reward to users for a positive feedback.

Manually Request a Review

To enable a user to initiate a review as a result of an action in the UI use a deep link to the App Store page for your app with the query parameter action=write-review appended to the URL.

using SA.iOS.UIKit;
...
string writeReviewURL = "https://itunes.apple.com/app/idXXXXXXXXXX?action=write-review";
ISN_UIApplication.OpenURL(writeReviewURL);

About

Foundation

AV Foundation

App Tracking Transparency

Game Kit

Store Kit

UI Kit

Social

Replay Kit

Contacts

AVKit

Photos

App Delegate

User Notifications

MediaPlayer

Core Location

AdSupport

EventKit

CloudKit

Authentication Services

XCode

Knowledge Base

Clone this wiki locally