从app内跳转到设置界面的代码如下:

  1. NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
  2. if ([[UIApplication sharedApplication] canOpenURL:url]) {
  3. [[UIApplication sharedApplication] openURL:url];
  4. }

跳转到系统WiFi设置页面代码:

  1. NSURL*url=[NSURL URLWithString:@"prefs:root=WIFI"];
  2. [[UIApplication sharedApplication] openURL:url];

另附其他设置页面:

    1. About — prefs:root=General&path=About
    2. Accessibility — prefs:root=General&path=ACCESSIBILITY
    3. Airplane Mode On — prefs:root=AIRPLANE_MODE
    4. Auto-Lock — prefs:root=General&path=AUTOLOCK
    5. Brightness — prefs:root=Brightness
    6. Bluetooth — prefs:root=General&path=Bluetooth
    7. Date & Time — prefs:root=General&path=DATE_AND_TIME
    8. FaceTime — prefs:root=FACETIME
    9. General — prefs:root=General
    10. Keyboard — prefs:root=General&path=Keyboard
    11. iCloud — prefs:root=CASTLE
    12. iCloud Storage & Backup — prefs:root=CASTLE&path=STORAGE_AND_BACKUP
    13. International — prefs:root=General&path=INTERNATIONAL
    14. Location Services — prefs:root=LOCATION_SERVICES
    15. Music — prefs:root=MUSIC
    16. Music Equalizer — prefs:root=MUSIC&path=EQ
    17. Music Volume Limit — prefs:root=MUSIC&path=VolumeLimit
    18. Network — prefs:root=General&path=Network
    19. Nike + iPod — prefs:root=NIKE_PLUS_IPOD
    20. Notes — prefs:root=NOTES
    21. Notification — prefs:root=NOTIFICATIONS_ID
    22. Phone — prefs:root=Phone
    23. Photos — prefs:root=Photos
    24. Profile — prefs:root=General&path=ManagedConfigurationList
    25. Reset — prefs:root=General&path=Reset
    26. Safari — prefs:root=Safari
    27. Siri — prefs:root=General&path=Assistant
    28. Sounds — prefs:root=Sounds
    29. Software Update — prefs:root=General&path=SOFTWARE_UPDATE_LINK
    30. Store — prefs:root=STORE
    31. Twitter — prefs:root=TWITTER
    32. Usage — prefs:root=General&path=USAGE
    33. VPN — prefs:root=General&path=Network/VPN
    34. Wallpaper — prefs:root=Wallpaper
    35. Wi-Fi — prefs:root=WIFI
    36. Setting —prefs:root=INTERNET_TETHERING

iOSapp内跳转到设置界面的更多相关文章

  1. iOS应用内跳转系统设置相关界面的方法

    在iOS开发中,有时会有跳转系统设置界面的需求,例如提示用户打开蓝牙或者WIFI,提醒用户打开推送或者位置权限等.在iOS6之后,第三方应用需要跳转系统设置界面,需要在URL type中添加一个pre ...

  2. android判断当前网络状态及跳转到设置界面

    今天,想做这个跳转到网络设置界面, 刚开始用 intent = new Intent(Settings.ACTION_WIRELESS_SETTINGS); 不料老是出现settings.Wirele ...

  3. iOS之应用内跳转系统设置相关界面

    在iOS开发中,有时会有跳转系统设置界面的需求,例如提示用户打开蓝牙或者WIFI,提醒用户打开推送或者位置权限等.在iOS6之后,第三方应用需要跳转系统设置界面,需要在URL type中添加一个pre ...

  4. >=ios8 应用内跳转到系统设置界面-openURL

    iOS8以后,苹果允许从应用内跳转到系统设置,但是调试结果表明,跳不到具体的设置项,使用前应该判断当前是否能够跳转到系统设置. 代码: NSURL *url = [NSURL URLWithStrin ...

  5. android中 检查网络连接状态的变化,无网络时跳转到设置界面

    1:在AndroidManifest.xml中加一个声明 <receiver android:name="NetCheckReceiver">    <inten ...

  6. android检查网络连接状态的变化,无网络时跳转到设置界面

    在AndroidManifest.xml中加一个声明<receiver android:name="NetCheckReceiver"> <intent-filt ...

  7. iOS 权限判断 跳转对应设置界面

    相机权限 1.1 使用说明 在合适的地方导入#import <AVFoundation/AVFoundation.h> 使用AVAuthorizationStatus类获取当前权限状态 在 ...

  8. iOS10 openURL方法跳转到设置界面

    问题 在iOS10之前,跳转到系统设置界面的某个指定界面的方式如下: //打开定位服务界面 NSURL*url=[NSURL URLWithString:@"prefs:root=Priva ...

  9. Android 跳转权限设置界面的终极方案

    转载请标明出处,维权必究:https://www.cnblogs.com/tangZH/p/10338377.html 有时候APP需要获取某些权限,要让用户手动打开,那么问题来了,若是直接提醒用户出 ...

随机推荐

  1. CentOS 挂载NTFS分区的两种方法

    第一种是安装内核模块,可到 http://sourceforge.net/projects/linux-ntfs/files/ 下载,需下载与你系统内核想对应的版本,使用uname -a 查看当前内核 ...

  2. php数据库操作代码

    数据库名为reg,表名为member,字段名为username,password,regdate <?php $link=@mysql_connect("localhost" ...

  3. mac复制文件命令

    test1下有test01 test02两个文件 ,复制到test2下 则cp -r test1/ test2 权限不够,,则加sudo test2要事先存在, 如果复制test01到当前目录 cp ...

  4. Linux sed 批量替换字符串和更多用法

    比如,要将目录/modules下面所有文件中的zhangsan都修改成lisi,这样做: # sed -i “s/zhangsan/lisi/g” `grep zhangsan -rl /module ...

  5. 【好】Paxos以及分布式一致性的学习

    Paxos,一言以蔽之,我们需要一种提交协议来确保分布式系统中的全局操作即使是在发生故障的情况下也能保证正确性. 跟拜占庭将军问题是不同的问题,虽然拜占庭也是Lamport提出的.拜占庭里面有叛徒,有 ...

  6. testNG配置dataSource多数据源

    spring的XML配置好之后,运行testNG还会出问题. 搞定代码如下: /** * 基于Spring的服务层测试超类 * * @author chief */ @ContextConfigura ...

  7. java -jar xxx.jar

    之前用MyEclipse做了一个可执行jar,点击就可运行的. 今天突然不好用了,错误是: could not find the main class C:\123\abc.jar.Program w ...

  8. Linux Unix shell 编程指南学习笔记(第四部分)

    第十六章  shell脚本介绍 此章节内容较为简单,跳过. 第十七章   条件測试 test命令 expr命令 test  格式  test  condition     或者  [ conditio ...

  9. HDU 1017 A Mathematical Curiosity (枚举水题)

    Problem Description Given two integers n and m, count the number of pairs of integers (a,b) such tha ...

  10. .net mvc项目 ajax

    经常在后台用一般处理程序(.ashx)来处理前台的ajax请求 using System; using System.Collections.Generic; using System.IO; usi ...