博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS - 常用本机URL跳转设置
阅读量:6466 次
发布时间:2019-06-23

本文共 2738 字,大约阅读时间需要 9 分钟。

 

 

import UIKitclass ViewController: UIViewController {            override func touchesBegan(_ touches: Set
, with event: UIEvent?) { print("点了 touchesBegan") let url = URL(string: UIApplication.openSettingsURLString) if let canOpenUrl = url, UIApplication.shared.canOpenURL(canOpenUrl){ UIApplication.shared.open(canOpenUrl, options: [:], completionHandler: nil) } } override func viewDidLoad() { super.viewDidLoad() //FIXME:因为苹果不让跳转root,下列都被废弃了。。 在xcode9 上都是直接设置权限,才能跳转对应设置界面,而且下列设置会被拒 // Do any additional setup after loading the view, typically from a nib. // About — prefs:root=General&path=About // Accessibility — prefs:root=General&path=ACCESSIBILITY // AirplaneModeOn— prefs:root=AIRPLANE_MODE // Auto-Lock — prefs:root=General&path=AUTOLOCK // Brightness — prefs:root=Brightness // Bluetooth — prefs:root=General&path=Bluetooth // Date& Time — prefs:root=General&path=DATE_AND_TIME // FaceTime — prefs:root=FACETIME // General— prefs:root=General // Keyboard — prefs:root=General&path=Keyboard // iCloud — prefs:root=CASTLE  iCloud // Storage & Backup — prefs:root=CASTLE&path=STORAGE_AND_BACKUP // International — prefs:root=General&path=INTERNATIONAL //   Location Services — prefs:root=LOCATION_SERVICES // Wi-Fi — prefs:root=WIFISetting—prefs:root=INTERNET_TETHERING // Wallpaper — prefs:root=Wallpaper // VPN — prefs:root=General&path=Network/VPN // Twitter — prefs:root=TWITTER  Usage — prefs:root=General&path=USAGE // Store — prefs:root=STORE // SoftwareUpdate— prefs:root=General&path=SOFTWARE_UPDATE_LINK // Sounds — prefs:root=Sounds // Siri — prefs:root=General&path=Assistant // Safari — prefs:root=Safari // Reset — prefs:root=General&path=Reset // Profile — prefs:root=General&path=ManagedConfigurationList // Phone — prefs:root=Phone  Photos — prefs:root=Photos // Notification — prefs:root=NOTIFICATIONS_ID // Notes — prefs:root=NOTES // Nike + iPod — prefs:root=NIKE_PLUS_IPOD // Network — prefs:root=General&path=Network // Music VolumeLimit— prefs:root=MUSIC&path=VolumeLimit //  Music Equalizer — prefs:root=MUSIC&path=EQ // Music — prefs:root=MUSIC }}

  

转载于:https://www.cnblogs.com/qingzZ/p/10361654.html

你可能感兴趣的文章
percona 5.7.11root初始密码设置
查看>>
Cognitive Security的异常检测技术
查看>>
Msg 15138 The database principal owns a schema in the database, and cannot be dropped.
查看>>
Cassandra 中的Snitch
查看>>
Impress.js上手 - 抛开PPT、制作Web 3D幻灯片放映
查看>>
生活杂事--度过十一中秋
查看>>
Pyrex也许是一个好东西
查看>>
Java内部类总结
查看>>
NeHe OpenGL第二课:多边形
查看>>
WINFORM WPF字体颜色相互转换
查看>>
能力不是仅靠原始积累(三)
查看>>
实战:使用终端服务网关访问终端服务
查看>>
彻底学会使用epoll(一)——ET模式实现分析
查看>>
路由器的密码恢复
查看>>
【Android 基础】Android中全屏或者取消标题栏
查看>>
Xilinx 常用模块汇总(verilog)【03】
查看>>
脱离标准文档流(2)---定位
查看>>
IO流之字符流
查看>>
集合异常之List接口
查看>>
Softmax回归
查看>>