Я хотел бы открыть приложение Uber из своего приложения, когда число очков будет больше 25. Вот мой код:
scoreLabel.text = "\(score)"
if score <= 5
{ promilLabel.text = "Trzezwy"
}
else if score <= 10{
promilLabel.text = "Wesoly"
}
else if score <= 15{
promilLabel.text = "Pijany"
}
else if score <= 25{
promilLabel.text = "Napierdolony"
}
else{
promilLabel.text = "Wytrzezwialka"
}
}
Я нашел что-то вроде этого, но как добавить его в другое заявление?:
if let url = NSURL(string: "app://") where UIApplication.sharedApplication().canOpenURL(url) {
UIApplication.sharedApplication().openURL(url)
} else if let itunesUrl = NSURL(string: "https://itunes.apple.com/itunes-link-to-app") where UIApplication.sharedApplication().canOpenURL(itunesUrl) {
UIApplication.sharedApplication().openURL(itunesUrl)
}