I have a plist in my Xcode project's resource folder but on physical drive it's in the top folder of my project. I want to read and write from this same file. Using NSBundle reads it properly and gives no problem. I'm using this code to read file path:

NSString *thePath = [[NSBundle mainBundle]  pathForResource:@"MyFile" ofType:@"plist"];

but i think NSBundle doesn't allow writing back and so it didn't work when i tried to write back the file. Using the following code creates/ updates file using application path

NSArray *pathArray = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDirectory, YES);
NSString * docsDirectory = [pathArray objectAtIndex:0];
NSString *filePath = [docsDirectory stringByAppendingPathComponent:@"MyFile.plist"];

but for now, I need to write on internal file. Any solution to access it? Besides, I've tried giving path from my working directory to project directory. It also doesn't work.

link|improve this question

65% accept rate
feedback

1 Answer

It's not NSBundle that doesn't support writing, it's iOS itself. iOS will not let your app write to its own bundle.

link|improve this answer
oh, ok. So i guess there isn't any way to trick iOS but we can write just anywhere outside the bundle? – WaJiyaz Feb 18 '11 at 21:04
Attempting to "trick" iOS usually results in your app being rejected from the App Store. You can't write just anywhere outside the bundle, there are specific directories set aside for you to use. – Jim Feb 18 '11 at 21:13
NSBundle doesn't allow for writing, but you can read the plist from the bundle and write it to the documents directory and get full access from there, correct? – SageAMDP Feb 18 '11 at 21:25
i did't intend to trick it for release :) i've found alternative. thanks for every information, every bit is worthwhile as i'm almost new to it. – WaJiyaz Feb 18 '11 at 23:04
@user25004: correct... but as Jim said it's not NSBundle that restricts, it's iOS itself. – WaJiyaz Feb 18 '11 at 23:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.