I am interested in using the SBUsesNetwork and UIRequiresPersistentWiFi keys in my application; however, I would like to enable them only when using a certain set of view controllers. Is there a way to programmatically flip those key values while the application is running?
|
1
|
|
||
|
|
|
|
You can't modify your bundle contents while running, you don't have write access to that directory. I'm not sure there's a way to do exactly what you want. |
||
|
|
|
|
You cannot modify the Info.plist. There does not seem to be an Apple sanctioned way of doing what you are after. |
||
|
|
|
|
I know you can get your info.plist as an NSDictionary via NSBundle with the following:
from there you could make a As for modifying your app's info.plist file directly there could be issues there (e.g, if you modify the file the code signing will fail and your app will be considered corrupt), though I'm not certain on this. |
||||
|
