質問

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