I have an app and when a uibutton is clicked, I want to open another app that is already installed (i.e. Waze). How can I do such? Big thanks.
In Swift 4 you can use:
if let url = URL(string: "\(myUrl)") { UIApplication.shared.open(url, options: [:], completionHandler: nil) }