大家好,今天小编来为大家解答以下的问题,关于在iOS系统中通过openUrl打开各类系统应用及设置界面指南,这个很多人还不知道,现在让我们一起来看看吧!
通过给url赋予不同的值,可以调用系统自带的电话/短信/电子邮件/浏览器/.
1.拨打电话
[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"tel: //800888"]];
拨打电话时不出现确认框
[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"telprompt: //800888"]];
拨打电话时弹出确认框
2.调用内置浏览器safari
[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"http://www.abt.com"]];
3.调用内置邮件
[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"mailto://admin@abt.com"]];
4. 拨打短信
[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"sms: //800888"]];
5.调用应用商店
[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"itms-apps://"]];
6. 呼叫iBook
[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"itms-books://"]];
7. 调用地图
[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"maps://"]];
8. 拨打Facetime
[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"facetime://"]];注意最后添加faceTime的账号,如:99999@qq.com
9. 通话音乐
[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"music://"]];
10.跳转到系统设置相关界面
[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=WIFI"]];
以下是跳转关键字设置
//打开关于本机的信息
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=Generalpath=About"]];
//开启辅助功能
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=Generalpath=ACCESSIBILITY"]];
//设置飞行模式失败,即设置界面
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=AIRPLANE_MODE"]];
//几分钟后屏幕锁定设置
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=Generalpath=AUTOLOCK"]];
//打开亮度失败,设置接口
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=亮度"]];
//打开蓝牙设置
[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=蓝牙"]];
//设置日期和时间设置
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=Generalpath=DATE_AND_TIME"]];
//打开FaceTime设置
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=FACETIME"]];
//下面是打开常规设置
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=General"]];
//打开键盘设置
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=Generalpath=Keyboard"]];
//打开iClound设置
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=CASTLE"]];
//打开iCloud下的存储空间
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=CASTLEpath=STORAGE_AND_BACKUP"]];
//打开General下的语言和区域设置
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=Generalpath=INTERNATIONAL"]];
//隐私下开启位置服务
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=LOCATION_SERVICES"]];
//打开设置下的音乐
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=MUSIC"]];
//打开music下的均衡器
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=MUSICpath=EQ"]];
//音乐下打开失败是什么原因?
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=MUSICpath=VolumeLimit"]];
//一般下打开网络不成功
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=Generalpath=Network"]];
//General下打开失败是什么情况
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=NIKE_PLUS_IPOD"]];
//打开settings下的备忘录设置
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=NOTES"]];
//打开settings下的通知设置
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=NOTIFICATIONS_ID"]];
//打开手机设置
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=Phone"]];
//打开settings下的照片和相机设置
//[[UIApplication shareApplication] openURL:[NSURL URLWithString:@"prefs:root=Photos"]];
//打开General下的描述文件
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=Generalpath=ManagedConfigurationList"]];
//打开General下的恢复设置
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=Generalpath=Reset"]];
//打开settings下的safari设置
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=Safari"]];
//打开siri失败
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=Generalpath=Assistant"]];
//打开settings下的声音设置
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=Sounds"]];
//在General下打开软件更新
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=Generalpath=SOFTWARE_UPDATE_LINK"]];
//打开常规下的iTunes Store和App Store设置
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=STORE"]];
//打开settings下的twitter设置
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=TWITTER"]];
//一般情况下打开使用
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=Generalpath=USAGE"]];
//打开general下的VPN设置
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=Generalpath=VPN"]];
//打开settings下的壁纸设置
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=壁纸"]];
//打开wifi设置
//[[UIApplication共享应用程序] openURL:[NSURL URLWithString:@"prefs:root=WIFI"]];
//打开失败
//[[UIApplication共享应用] openURL:[NSURL URLWithString:@"prefs:root=INTERNET_TETHERING"]];
好了,本文到此结束,如果可以帮助到大家,还望关注本站哦!
【在iOS系统中通过openUrl打开各类系统应用及设置界面指南】相关文章:
2.米颠拜石
3.王羲之临池学书
8.郑板桥轶事十则
用户评论
终于可以自己控制手机上的各种设置了!
有12位网友表示赞同!
这个方法可以帮我在不用手动去找APP的情况下跳转设置页面,太方便了。
有5位网友表示赞同!
原来iOS也能像安卓那样灵活地打开应用,这真是个好消息
有9位网友表示赞同!
学习一下看看能不能用openUrl搞一些自动化操作
有12位网友表示赞同!
这篇文章介绍很详细,我都学会啦!
有5位网友表示赞同!
之前不知道这个方法,太赞了!
有5位网友表示赞同!
这下想打开某个应用或者系统界面都不需要翻菜单了。
有15位网友表示赞同!
终于了解了openUrl的用法,原来还能这样玩手机。
有13位网友表示赞同!
以前找设置界面总是一团糟,这下问题解决了!
有12位网友表示赞同!
希望能用这个方法 automating我的手机操作。
有16位网友表示赞同!
希望以后的文章也能介绍更多iOS开发的小技巧。
有19位网友表示赞同!
这篇文章给了我很多想法,可以尝试实现一些有创意的功能!
有7位网友表示赞同!
分享一下,我已经把这个方法分享给所有果粉朋友了!
有15位网友表示赞同!
看到这篇标题,感觉自己又掌握了一个新技能!
有7位网友表示赞同!
iOS的开发思路还真是有趣!
有5位网友表示赞同!
学习新的东西总是很有乐趣!
有12位网友表示赞同!
期待更多关于iOS编程的文章分享!
有17位网友表示赞同!
这个方法一定能提高我使用iPhone的效率!
有13位网友表示赞同!
之前一直不知道这个功能存在,现在才知道原来还能这么操作!
有17位网友表示赞同!
以后不用手动点来点去就能打开应用,太方便了!
有14位网友表示赞同!