首页 > 系统 > iOS > 正文

iOS程序跳转到手机的设置页面

2019-11-09 17:42:06
字体:
来源:转载
供稿:网友

我们在开发app过程中很多时候会需要设置系统权限,这时就需要在应用中跳转至系统设置页面权限设置页面,以下是自己结合网上的资料总结的一些经验:直接从应用中跳转至系统设置中这个应用的权限设置页面NSURL *url = [NSURL URLWithString:UIapplicationOpenSettingsURLString];if ([[UIApplication sharedApplication] canOpenURL:url]) {[[UIApplication sharedApplication] openURL:url];}2.从应用中跳转至系统其他设置页面如果只是跳转到其他设置界面,只需要找到对应界面的URL参数即可,在这里我以定位权限为例:NSURL *url = [NSURL URLWithString:@"PRefs:root=LOCATION_SERVICES"];if ([[UIApplication sharedApplication] canOpenURL:url]) {[[UIApplication sharedApplication] openURL:url];}注:如上跳转至对应的界面,但可能有时需要在info中添加 URL types,下边是一些界面的URL参数配置:

关于手机 About — prefs:root=General&path=About可访问性 accessibility — prefs:root=General&path=ACCESSIBILITY飞行模式 Airplane Mode On — 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_TIMEFaceTime prefs:root=FACETIME通用 General — prefs:root=General键盘 Keyboard — prefs:root=General&path=KeyboardiCloud — prefs:root=CASTLEiCloud Storage & Backup — prefs:root=CASTLE&path=STORAGE_AND_BACKUPInternational — prefs:root=General&path=INTERNATIONAL定位服务 Location Services — prefs:root=LOCATION_SERVICESMusic — prefs:root=MUSICMusic Equalizer — prefs:root=MUSIC&path=EQMusic Volume Limit — prefs:root=MUSIC&path=VolumeLimitNetwork — prefs:root=General&path=NetworkNike + ipod — prefs:root=NIKE_PLUS_IPODNotes — prefs:root=NOTESNotification — prefs:root=NOTIFICATIONS_ID Profile — prefs:root=General&path=ManagedConfigurationList还原 Reset — prefs:root=General&path=Reset浏览器 Safari — prefs:root=SafariSiri — prefs:root=General&path=AssistantSounds — prefs:root=SoundsSoftware Update — prefs:root=General&path=SOFTWARE_UPDATE_LINKStore — prefs:root=STORETwitter — prefs:root=TWITTER VPN — prefs:root=General&path=Network/VPNWallpaper — prefs:root=WallpaperWi-Fi — prefs:root=WIFISetting—prefs:root=INTERNET_TETHERING会跳转至通用界面 :Phone — prefs:root=PhonePhotos — prefs:root=PhotosUsage — prefs:root=General&path=USAGE
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表