IOS App Settings Pack

Using the Apple settings in the project, is it possible to issue specific settings to the user only if another setting condition is met?

For example, I have a toggle switch, and if the user switches the selection to False in the Settings application, I want to show a text field that they can fill. If the switch is true, I want to hide the text box,

Any help or pointers to documentation explaining this would be great.

+4
source share
1 answer

Here you can find step-by-step instructions: Adding a preset to the iPhone app .


Edit:
I did my research, and I think that you cannot do this in an App Store-approved application, because to achieve this you need to modify the settings.bundle file inside the application package, which is not allowed in applications approved by the App Store.

+4
source

Source: https://habr.com/ru/post/1338473/


All Articles