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:STATE_SELECTED不工作 2022-01-01
- 新的@SystemApi 注解是什么意思,和@hide 有什么区别 2022-01-01
- 如何将多个组件添加到 PickerView? 2022-01-01
- 在 iOS8 中无法获得正确的键盘高度值 2022-01-01
- 我的 UIImageView 的任务 2022-01-01
- 在 appComponent dagger 2 中动态添加测试模块? 2022-01-01
- - (CGRect)convertRect:(CGRect)rect toView:(UIView *)view 如何工作 2022-01-01
- 在 Android 模拟器中激活网络位置提供程序? 2022-01-01
- 突出显示朗读文本(在 iPhone 的故事书类型应用程序中) 2022-01-01
- 可可/目标C(OSX不是iOS)从子对象访问父对象 2022-01-01
