A custom view controller for a preset?

I have a settings view application that dynamically downloads settings from a remote server. It works great.

I also want to make them available in iPhone settings, but the set of settings seems to be limited to simple key values ​​loaded and stored in local NSUserDefaults. Is there a way to specify a custom view for this?

+4
source share
1 answer

Customization packages are based on plist files and do not contain any code. You cannot perform any calculations in the Settings app. You created your own settings user interface and placed it in your application.

Apple uses more sophisticated customization packages that execute code, but apps on the App Store cannot.

+8
source

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


All Articles