Open AppStore through button

前端 未结 15 812
逝去的感伤
逝去的感伤 2020-12-12 22:18

Could you guys help me to translate the following code into Swift?

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@\"itms://itunes.apple.com         


        
15条回答
  •  无人及你
    2020-12-12 22:28

    For Swift 5 (tested code) to open App Store link

    if let url = URL(string: "https://itunes.apple.com/in/app/your-appName/id123456?mt=8") 
    {
               if #available(iOS 10.0, *) {
                  UIApplication.shared.open(url, options: [:], completionHandler: nil)
               }
               else {
                     if UIApplication.shared.canOpenURL(url as URL) {
                        UIApplication.shared.openURL(url as URL)
                    }
               }
    } 
    

提交回复
热议问题