How can I add a link for a rate button with swift?

前端 未结 13 720
面向向阳花
面向向阳花 2021-01-29 18:57

First I don\'t know how to get the link before I submit my app, and if the link is for each country app store or is it universal?

Also I don\'t know if the way to do it

13条回答
  •  爱一瞬间的悲伤
    2021-01-29 19:30

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

提交回复
热议问题