views:

52

answers:

1

I have some png's that are now resources in XCode.

I would like to replace the with other png's on the device after deployment. How do I do that, while still being able to work with them in XCode?

I thing it should be "Documents" "Library" or "Settings" folder, but it is not so clear how to create them in xCode.

(This is an internal app, no appstore, no clients, the files should normally be manipulated from a connected computer).

Thanks

A: 

You can't modify resources in your app bundle without a jailbroken device.

tc.
So an app can download additional languagefiles, skinns etc?
Olav
You can, but **not to your app bundle** (i.e. the "MyApp.app" directory). You need to write supporting code to do load resources from the Documents directory, or similar.
tc.