デバイスにplistを保存するための正しいファイルパスは何ですか。
チュートリアルでこれを読んだ
これはコンピュータで機能しますが、デバイスのファイルの場所を知りたいです。
// write xml representation of dictionary to a file
[dictionary writeToFile:@"/Users/henrik/Sites/foo.plist" atomically:NO];
私は現在、私が読んだファイルパスに書き込もうとしています
NSString *filepath = [[NSBundle mainBundle]
pathForResource:@"UserAdded" ofType:@"plist"];
userAddedQuotes = [[NSMutableArray alloc] initWithContentsOfFile:filepath];
次のように
[userAddedQuotes addObject:temp];
[userAddedQuotes writeToFile:filepath atomically: NO];
配列は実行時に更新されますが、plistには保存されません。