URL for sending a user to the app review page on device's app store

后端 未结 7 1263
天涯浪人
天涯浪人 2020-12-02 05:06

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

7条回答
  •  抹茶落季
    2020-12-02 05:13

    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()
    
    }
    

提交回复
热议问题