Reputation: 41
I am able to take a picture and save it inside the Document folder, but I want to save those files to a folder called pictures inside the ****.app folder, not to the Document folder, otherwise my given paths for view pictures will not work. Does anyone have any suggestions?
Upvotes: 2
Views: 2102
Reputation: 10296
You can't write to the app's bundle - which is what you are trying to accomplish. The bundle folder is off limits.
You will need to resort to saving to Documents or Documents/../Library/Caches.
Upvotes: 3