Question

NSString *path = [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:@"favorites.plist"];

BOOL canWrite = [arr writeToFile:path atomically:YES];// arr is an NSArray

I got canWrite = NO. Did some research which says that the main bundle is readonly. Is there a way to make the mainbundle files readwrite?

Thanks,

Était-ce utile?

La solution

No, this is not possible. This would mean that you change your binary and add features that apple would have rejected your app for in review.

Just copy any file from you mainBundle to the documents directory and save changes to that file.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top