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 中的访问设置应用程序


- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01