博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS 跳转到系统设置的问题
阅读量:5072 次
发布时间:2019-06-12

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

一:跳转方式到系统设置的方式

iOS10之前:

   if ([[UIApplication sharedApplication] canOpenURL:url])

{

     [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=Bluetooth"]]; 

}

 

iOS10之后:

   if ([[UIApplication sharedApplication] canOpenURL:url])

{

   [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"App-Prefs:root=Bluetooth"] options:@{} completionHandler:nil];

}

 

 

二:跳转到本App的系统设置

[[UIApplication sharedApplication]openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];

 

三:相关跳转URL路径

prefs:root=General&path=About

prefs:root=General&path=ACCESSIBILITY

prefs:root=AIRPLANE_MODE

prefs:root=General&path=AUTOLOCK

prefs:root=General&path=USAGE/CELLULAR_USAGE

prefs:root=Brightness

prefs:root=Bluetooth

prefs:root=General&path=DATE_AND_TIME

prefs:root=FACETIME

prefs:root=General

prefs:root=General&path=Keyboard

prefs:root=CASTLE

prefs:root=CASTLE&path=STORAGE_AND_BACKUP

prefs:root=General&path=INTERNATIONAL

prefs:root=LOCATION_SERVICES

prefs:root=ACCOUNT_SETTINGS

prefs:root=MUSIC

prefs:root=MUSIC&path=EQ

prefs:root=MUSIC&path=VolumeLimit

prefs:root=General&path=Network

prefs:root=NIKE_PLUS_IPOD

prefs:root=NOTES

prefs:root=NOTIFICATIONS_ID

prefs:root=Phone

prefs:root=Photos

prefs:root=General&path=ManagedConfigurationList

prefs:root=General&path=Reset

prefs:root=Sounds&path=Ringtone

prefs:root=Safari

prefs:root=General&path=Assistant

prefs:root=Sounds

prefs:root=General&path=SOFTWARE_UPDATE_LINK prefs:root=STORE

prefs:root=TWITTER

prefs:root=FACEBOOK

prefs:root=General&path=USAGE

prefs:root=VIDEO

prefs:root=General&path=Network/VPN

prefs:root=Wallpaper

prefs:root=WIFI

prefs:root=INTERNET_TETHERING

 

转载于:https://www.cnblogs.com/nelsen-chen/p/6628138.html

你可能感兴趣的文章
计算机基础作业1
查看>>
Ubuntu 深度炼丹环境配置
查看>>
C#中集合ArrayList与Hashtable的使用
查看>>
从一个标准 url 里取出文件的扩展名
查看>>
map基本用法
查看>>
poj-1163 动态规划
查看>>
Golang之interface(多态,类型断言)
查看>>
Xshell5显示乱码问题
查看>>
8-1 python 接口开发(提供数据、返回session_id)
查看>>
swift 中单例的写法
查看>>
win10子系统ubuntu忘记密码解决方案
查看>>
如何判断两个链表相交
查看>>
ZenShot 流水账(一)
查看>>
怎样从Java转换到Kotlin代码:现在就开始使用Kotlin(KAD 29)
查看>>
Java 执行CMD/DOS
查看>>
oracle容器化docker解决方案
查看>>
基于SOA分布式架构的dubbo框架基础学习篇
查看>>
关于链表的一个小程序
查看>>
java多线程--线程池的使用
查看>>
EL简介
查看>>