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

前端 未结 13 692
面向向阳花
面向向阳花 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:18

    In case you want to directly write a review rather than just open an app page:

        if let url = URL(string: "https://itunes.apple.com/in/app/\(yourappname)/id\(yourAppleAppId)?ls=1&mt=8&action=write-review") {
           if #available(iOS 10.0, *) {
               UIApplication.shared.open(url, options: [:], completionHandler: nil)
           } else {
               // Earlier versions
               if UIApplication.shared.canOpenURL(url as URL) {
                  UIApplication.shared.openURL(url as URL)
               }
           }
        }
    
    0 讨论(0)
  • 2021-01-29 19:19

    All the above answers are not best practices they might be affecting your app store ratings. For best practice use the below code.

    func ReviewAppController() {
        let alert = UIAlertController(title: "Feedback", message: "Are you enjoying our App?", preferredStyle: .alert)
        alert.addAction(UIAlertAction(title: "Dismis", style: .cancel, handler: nil))
        alert.addAction(UIAlertAction(title: "Yes, i Love it!", style: .default, handler: {_ in
            SKStoreReviewController.requestReview()
        }))
        alert.addAction(UIAlertAction(title: "No, this sucks!", style: .default, handler: {_ in
            //Collect feedback
        }))
        present(alert, animated: true)
    }
    
    0 讨论(0)
  • 2021-01-29 19:24

    You can use the following function and replace the APP_ID with your one. Calling this function will open the app in app store link and user will see the Review page where he can click and write a review easily.

    func rateApp(){
       UIApplication.sharedApplication().openURL(NSURL(string : "itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=\(APP_ID)&onlyLatestVersion=true&pageNumber=0&sortOrdering=1)")!);
    }
    
    0 讨论(0)
  • 2021-01-29 19:25

    For iOS 10.3+ you can use SKStoreReviewController with simple dialog, and choose rating in alert-style window. To use it, you should import StoreKit library. So, universal way to rate your app inside itself is like this:

    import StoreKit
    
    func rateApp(){
       if #available(iOS 10.3, *) {
          SKStoreReviewController.requestReview()
       } else {
          guard let url = URL(string: "itms-apps://itunes.apple.com/ru/app/cosmeteria/id1270174484") else {
             return
          }
    
          if #available(iOS 10.0, *) {
             UIApplication.shared.open(url, options: [:], completionHandler: nil)
          } else {
             UIApplication.shared.openURL(url)
          }
       }
    }
    

    And when you try to launch it in simulator, you won't see App Store window, so try it on device and it gonna work. This way covers all iOS versions, using all abilities. And the part of path in you application address "/us/app" means your App Store localisation, for example "us" means USA. You can easily find your app id in address string just by opening app in App Store in any browser.To get the link, just copy address in browser. Changing "https://" for "itms-apps://" lets you to open app in App Store application, while "https" opens web page in Safari

    0 讨论(0)
  • 2021-01-29 19:27

    Swift 5.1: The following function sends your user directly to the review section of ANY store, not just on the American one:

    func rateApp(id : String) {
        guard let url = URL(string : "itms-apps://itunes.apple.com/app/id\(id)?mt=8&action=write-review") else { return }
        if #available(iOS 10.0, *) {
            UIApplication.shared.open(url, options: [:], completionHandler: nil)
        } else {
            UIApplication.shared.openURL(url)
        }
    }
    

    Usage:

    rateApp(id: "1287000522")
    

    Important Note: This doesn't work on simulator! Test it on a real device.

    0 讨论(0)
  • 2021-01-29 19:27

    Goto your itunesconnect account -> My Apps -> Click on "+" Button ->New iOS App -> Fill require details -> After filling all details goto your App -> Click on More Button -> View on AppStore -> it will redirect you to your App URL this will be universal & will be same after your app goes live .

    0 讨论(0)
提交回复
热议问题