I would like to use InAppSettingsKit only for displaying the settings in the Settings.app of the iPhone. I have different custom settings for in-app settings. Is this possible and how can this be achieved ?
I would like to use InAppSettingsKit only for displaying the settings in the Settings.app
Share
The plists are searched in this order:
InAppSettings.bundle/FILE~DEVICE.inApp.plist – InAppSettings.bundle/FILE.inApp.plist
InAppSettings.bundle/FILE~DEVICE.plist
InAppSettings.bundle/FILE.plist
Settings.bundle/FILE~DEVICE.inApp.plist
Settings.bundle/FILE.inApp.plist Settings.bundle/FILE~DEVICE.plist
Settings.bundle/FILE.plist
I hope it helps!!
EDIT:
The InAppSettingsKit library searches automatically on all your settings bundles, in that order I wrote before. However, the settings.app only searches into the
Settings.bundle. So, if you want a separated settings file for your app (using InAppSettingsKit) you can create aSettings.bundlefor your settings app and a, e.g.,InAppSettings.bundlefor your in-app settings.