Is there anyway to use a NSBundle from the documents folder on iOS?
Thanks!
|
|
Not sure what the exact question is, either, but here is how I access the local document folder of my app (this is not the documents folder where you store sources your app uses, but the one your app stores local resources)
for example, in my app I take pics with the camera and store them to the app's local folder, not the device camera roll, so to get the number of images I do this, in the
if you want to know what is in the documents folder (the one you can actually browse in the iOS Simulator
you would use Hope it helps you, mate! |
||||
|
|
|
I'm not entirely sure what you're getting at, but the general approach as far as using a file from your application's bundle is to copy it into the document directory as follows:
In terms of some sample code, I've a method I use for such purposes as follows:
This will check for the presence of the named file in your document directory and copy the file from your bundle if it doesn't already exist. |
||||
|
|