Is there any option to display in iOS Settings.bundle not only standard NSUserDefaults but also for a specific key. I would like to have the serverURL setting displayed inside iOS Settings app.
static NSString * const kConfigurationKey = @"com.apple.configuration.managed";
static NSString * const kConfigurationServerURLKey = @"serverURL";
NSDictionary *serverConfig = [[NSUserDefaults standardUserDefaults] dictionaryForKey:kConfigurationKey];
NSString *serverURLString = serverConfig[kConfigurationServerURLKey];
I would like to avoid copying it from this dictionary to the main one just to have it displayed.