-1

重複の可能性:
iPhone Dev - Edit objects in Array from Plist

すでに設定した「Plist」に保存したい文字列や整数など、さまざまな変数がいくつかあります。私はすでに「Plist」を読んでいますが、後で変数を変更して「Plist」に保存する方法がわかりません。

アップデート

私はすでに次のコードを使用して plist ファイルをロードし、「viewDidLoad」メソッドでキーを読み取ります。

NSString* filePath = [[NSBundle mainBundle] pathForResource:@"questions" ofType:@"plist"];
categories = [NSArray arrayWithContentsOfFile:filePath];

私の「Plist」内には、各項目の配列があり、それを読み取ります。

pair = [categories objectAtIndex:questionCounter]; 

plistQuestion = [pair objectAtIndex:0];
plistAnswer = [pair objectAtIndex:1];
plistAnswer2 = [pair objectAtIndex:2];
completed = [pair objectAtIndex:3];

前もって感謝します!

4

1 に答える 1

2
NSMutableDictionary *foo = [NSMutableDictionary dictionaryWithContentsOfFile:@"file.plist"];
[foo setObject:@"bar" forKey:@"baz"];
[foo writeToFile:@"file.plist" atomically:YES];
于 2012-08-29T15:33:31.030 に答える