Access Settings app in iOS(iOS 中的访问设置应用程序)
问题描述
是否有机会通过单击按钮在 iOS 中显示 settings.app?它应该适用于 iOS 5.1,因此prefs:root..." url 不是选项.
Is there an opportinity to show up the settings.app in iOS by clicking on a button? It should work with iOS 5.1 so the "prefs:root..." url is no option.
你知道如何解决这个问题吗?
Do you have an idea how to solve this?
推荐答案
我知道这个问题具体是关于 5.1,但万一其他人有兴趣:
I know the question is about 5.1 specifically, but in case anyone else is interested:
从 iOS 8 开始,可以将用户从您的应用程序直接带到设置"应用程序.它们将深入链接到您应用的特定设置页面,但它们可以返回到顶级设置屏幕.
As of iOS 8, it is possible to take a user from your app directly into the Settings app. They will be deep linked into your app's specific Settings page, but they can back out into the top level Settings screen.
更新:
感谢 Pavel 的评论,我简化了 if 语句并避免了 iOS 7 上的 EXC_BAD_ACCESS.
Thanks to Pavel's comment, I simplified the if statement and avoided the EXC_BAD_ACCESS on iOS 7.
更新 2:
如果您的部署目标设置为 8.0 或更高版本,Xcode 6.3 会给您以下警告:
If your deployment target is set to 8.0 or above, Xcode 6.3 will give you the following warning:
Comparison of address of 'UIApplicationOpenSettingsURLString' not equal to a null pointer is always true
这是因为该功能从 8.0 开始可用,因此该指针永远不会为 NULL.如果您的部署目标是 8.0+,只需删除下面的 if 语句即可.
This is because the feature was available starting in 8.0, so this pointer will never be NULL. If your deployment target is 8.0+, just remove the if statement below.
if (&UIApplicationOpenSettingsURLString != NULL) {
NSURL *appSettings = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
[[UIApplication sharedApplication] openURL:appSettings];
}
这篇关于iOS 中的访问设置应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:iOS 中的访问设置应用程序
基础教程推荐
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
