ios – Swift:如何在点击UIButton时打开一个新的应用程序

前端之家收集整理的这篇文章主要介绍了ios – Swift:如何在点击UIButton时打开一个新的应用程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个应用程序,当点击一个uibutton时,我想打开另一个已安装的应用程序(即Waze).我怎么能这样做?十分感谢.

解决方法

试试这个.例如,您想要打开Instagram应用程序:
var instagramHooks = "instagram://user?username=johndoe"
    var instagramUrl = NSURL(string: instagramHooks)
    if UIApplication.sharedApplication().canOpenURL(instagramUrl!)
    {  
        UIApplication.sharedApplication().openURL(instagramUrl!)

     } else {
        //redirect to safari because the user doesn't have Instagram
        UIApplication.sharedApplication().openURL(NSURL(string: "http://instagram.com/")!)
    }
原文链接:https://www.f2er.com/iOS/332733.html

猜你在找的iOS相关文章