iOS Application Settings Bundle(iOS 应用程序设置包)
问题描述
在项目中使用 Apple 的设置包,是否可以仅在满足另一个设置条件时才向用户公开某些设置?
Using Apple's Settings bundle in a project, is it possible to expose certain settings to the user only if another setting condition is met?
例如,我有一个切换开关,如果用户在设置应用程序中将选择切换为 False,我想显示一个他们可以填写的文本框.如果切换为 true,我想隐藏文本框.
E.g I have a toggle switch, and if the user toggles the selection to False in the Settings application, I want to show a text box that they can fill in. If the toggle is true, I want to hide the text box.
任何解释这一点的帮助或指向文档的指南都会很棒.
Any help or pointers to documentation that explain this would be great.
推荐答案
您可以在此处找到分步说明:将设置包添加到 iPhone 应用程序.
You can find step by step instructions here: Adding a settings bundle to an iPhone App.
我做了我的研究,我认为您不能在 App Store 批准的应用程序中执行此操作,因为要达到此目的,您必须更改应用程序包中的 settings.bundle 文件,这在 App Store 批准的应用程序中是不允许的.
I did my research and I think you cannot do this in an App Store approved app, because to reach this thing you have to change the settings.bundle file inside the application's bundle, which is not allowed in App Store approved apps.
这篇关于iOS 应用程序设置包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:iOS 应用程序设置包
基础教程推荐
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01