码迷,mamicode.com
首页 > 其他好文 > 详细

系统设置

时间:2017-04-13 12:43:23      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:hub   option   path   amp   print   har   pat   nop   http   

iOS10变更 

Using "App-Prefs:root" instead of "prefs:root"

if let url = URL(string: "App-Prefs:root=NOTIFICATIONS_ID&path=\(Bundle.main.bundleIdentifier ?? "")") {

            if UIApplication.shared.canOpenURL(url) {

                if #available(iOS 10.0, *) {
                    UIApplication.shared.open(url, options: [:], completionHandler: nil)
                } else {
                    UIApplication.shared.openURL(url)
                }
            } else {

                UIApplication.shared.openURL(URL(string: UIApplicationOpenSettingsURLString)!)
            }
        }

schemes settings:https://gist.github.com/KelvinJin/8b25e7154a97c736f0734ca80b9d46a8

系统设置

标签:hub   option   path   amp   print   har   pat   nop   http   

原文地址:http://www.cnblogs.com/Leean/p/6703281.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!