How can i programatically rename resources in AppBundle.Need to resave or rename the images which are stored in AppBundle with a user given name.
Asked
Active
Viewed 140 times
0
-
search first on net, don't ask simple one directly on stack, it will make ur programming concepts weeker... – Chatar Veer Suthar Jun 20 '11 at 09:52
2 Answers
2
Your app bundle is immutable, you may not change it. You would need to copy the files to the app's Documents folder or its Library folder.
0
You can try this....
NSString* your_path = [NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES) objectAtIndex:0];

Anish
- 2,889
- 1
- 20
- 45