应用间跳转

2018-09-11  本文已影响0人  米亚流年

iOS 9.0之后 应用程序跳转 需要设置白名单
info.plist 增加 LSApplicationQueriesSchemes 为数组


WX20180911-110958.png
1.添加urlSchemes
WX20180911-110219.png

2.跳转代码

   let urlString : String = "weixin://"
    if  UIApplication.shared.canOpenURL(URL(string: urlString)!) {
        UIApplication.shared.open(URL(string: urlString)!, options:[:]) { (_) in
        }
    }else {
        print("没有安装app 不能跳转")
    }
跳转到指定页面
1要跳转的app
image.png
2接受跳转的app
image.png
image.png
上一篇下一篇

猜你喜欢

热点阅读