ios - Set info Plist Bool Programmatically -
Can I change infoPlist bool for supports iTunes file sharing
Programmatically
Some of the lines:
[[NSBundle mainBundle] objectForInfoDictionaryKey: @ "Application_supports_iTunes_file_sharing"] = No]];
This is not possible for the same reason.
If you need a temporary data element for your app, then this NSUserDefaults
All special flags need to be set up in the info.plst
(say, debug vs release), but it should be compiled into your bundle.
Comments
Post a Comment