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,

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top