0

ここに画像の説明を入力私は彼のイメージのようなxcodeのdocumnetディレクトリにinfoD.plistという名前のplistを作成しました

私のコードでは、場合によっては NO を YES に変更したいだけです。

infoD plist objectAtIndex:10 to YES if purchased.if the user purchased something ,i need to chnage the iteam10 value to YES. how to do this.

前もって感謝します。

4

1 に答える 1

0

NSMutableDictionary を使用して、ur plist の plist コンテンツを取得します

NSMutableDictionary *dict = [NSMutableDictionary dictionaryWithContentsOfFile:<filepath>];

[dict setValue:[NSNumber numberWithBool:YES] forKey:@"item 10"];
[dict writeToFile:<filepath> atomically:YES];
于 2012-08-08T07:05:43.017 に答える