What\'s the URL to launch in order to bring the iTunes App Store to the front, and open it to show the Reviews page of an app? I want to send my users to the \"Write a Revie
For Requesting for rate and review to user after iOS 10.3+
The SKStoreReviewController allows users to rate an app directly from within the app through a dialog box. The only downsite is that you can only request StoreKit to display the dialog, but can't be sure if it will.
import StoreKit
func requestToRate() {
SKStoreReviewController.requestReview()
}