iOS8是如何跳转系统设置页面

说下iOS8是如何跳转的,以下是代码:

[objc] view plain copy

print?

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

如果有感兴趣的同学可以留言大家谈论。

原文地址:http://blog.csdn.net/showhilllee/article/details/44057403

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

[objc] view plain copy

print?

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

另附其他设置页面:

[objc] view plain copy

print?

    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
时间: 2024-10-12 21:05:29

iOS8是如何跳转系统设置页面的相关文章

iOS8跳到系统设置页面

iOS5.1+之后跳转setting页面的方式都失效了,不过在iOS8苹果有提供了一个键值允许app跳转到setting页面,具体代码如下: NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString]; if ([[UIApplication sharedApplication] canOpenURL:url]) { [[UIApplication sharedApplication] openURL:url]; }

iOS App 内跳转到手机系统设置页面

在iOS开发中,有时会有跳转系统设置界面的需求,例如提示用户打开提醒用户打开推送或者位置权限等. 在iOS6之后,第三方应用需要跳转系统设置界面,需要在URL type中添加一个Prefs值,如下图: 注意:设置跳转有三种方式,每一种的使用场景都不同. 并且你在跳转到系统中自己应用下面设置的时候, 你的应用要提前至少申请了某一个权限,如通知,定位等.否则,会引起崩溃. 方式一:prefs:root=某项服务 方式二:prefs:root=bundleID 方式三: UIApplicationOp

想让两个地址跳转的页面一样

问题:项目首页登录:如想让(A)10.118.66.20:8080/ABX/ 与(B)10.118.66.20:8080/ABX/index.do,链接跳转的页面一样 web.xml中配置如下: <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> (1)可在index.jsp页面中处理 <%@ page language="java&q

nginx 访问默认index.html首页跳转指定页面

nginx 访问默认index.html首页跳转指定页面 在server 段加入: rewrite ^/index.html(.*)$ /index.php permanent;

js点击button按钮跳转到页面代码

www.111cn.net 编辑:smoke 来源:转载 在网页中button按钮不具备a标签的属性了,如果我们要给button 按钮增加跳转事件我们可以在它的确onclick事件上点击跳转js来实现,下面我来给大家介绍一些常用的方法. 点击按钮怎么跳转到另外一个页面呢?我们在网站制作中可能是需要的,因为有时我们需要做这样的效果,尤其是将按钮做成一个图片,而点击图片要跳转到新的页面时,怎么做到呢? 这样的效果可以:onclick="window.location=’新页面’" 来实现.

JAVASCRIPT实现的WEB页面跳转以及页面间传值方法

在WEB页面中,我们实现页面跳转的方法通常是用LINK,BUTTON LINK ,IMG LINK等等,由用户点击某处,然后直接由浏览器帮我们跳转. 但有时候,需要当某事件触发时,我们先做一些操作,然后再跳转,这时,就要用JAVASCRIPT来实现这一跳转功能. 下面是具体的做法: 一:跳转到新页面,并且是在新窗口中打开时: 复制代码 代码如下: function gogogo() { //do someghing here... window.open("test2.html");

网页调试技巧:抓取马上跳转的页面POST信息或者页面内容

http://www.qs5.org/Post/625.html 网页调试技巧:抓取马上跳转的页面POST信息或者页面内容 2016/02/02 | 心得分享 | 0 Replies 有时候调试网页或者抓别人网页的POST包的时候. 总会遇到这样的尴尬,我们需要抓取POST提交的信息. 或者获取POST完成页面返回的代码. 但是,目标页却马上就跳转了,导致,还没来得及Esc呢,页面就已经刷新了. 这种情况,起码谷歌浏览器的F12是搞不了了... 比如下面的情况 我把密码放在 被Post页面的源码

StoryBoard页面联线跳转已经页面之间传参数

1.选中上图黄色.按住Control 把线拖到要要跳转的页面,寻找show. 2.选中联线.在右边Identifier:随便填入一个标示 3.在按钮点击事件加上如下代码 - (IBAction)buttonTouched:(id)sender { [self performSegueWithIdentifier:@"ViewDetail" sender:self]; } 4. StroryBoard中 A 页面把值传到B页面 B 页面 h文件 @property (copy, nona

UI进阶 跳转系统设置相关界面的方法

跳转系统设置界面,例如提示用户打开定位.蓝牙或者WIFI,提醒用户打开推送或者位置权限等 在iOS6之后,第三方应用需要跳转系统设置界面,需要在URL type中添加一个prefs值,如下图: 跳转系统设置根目录中的项目使用下面的方法 1 _array = @[ 2 @{@"系统设置":@"prefs:root=INTERNET_TETHERING"}, 3 @{@"WIFI设置":@"prefs:root=WIFI"}, 4