0

テキストフィールドから取得した数値のリストを含む NSMutableArray があります。

完了ボタンをタップして、NSuserdomain 内の plist に NSMutableArray を保存しようとしています。plist の内容を確認するには、それらを別の NSMUtableArray に再読み込みしてから、配列を出力します。

-(NSString *) dataFilePath
{ NSArray *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentDirectory = [path objectAtIndex:0]; return     [documentDirectory stringByAppendingPathComponent:@"WeightsList.plist"];
}

- (void)writePlist
{
    [weightsArray writeToFile:[self dataFilePath] atomically:YES];
}

-(void)readPlist
{ 
    NSString *filePath = [self dataFilePath]; 
if ([[NSFileManager defaultManager] fileExistsAtPath:filePath]) 
    { 
        NSMutableArray *weightsArray = [[NSMutableArray alloc] initWithContentsOfFile:filePath]; 
    NSLog(@"%@\n",weightsArray); 
    NSLog(@"%@\n", filePath); 
   }
}

以下の「完了」アクションは、完了ボタンが押されたときに呼び出されるものです。

-(IBAction)done { int arrayCount;

id arrayVariable;

arrayCount = [weightsArray count];
[weightsArray addObject:weightInput.text];
arrayVariable = [weightsArray objectAtIndex:arrayCount];
NSLog(@"Weight Entered: %@", arrayVariable);
NSLog(@"%@",weightsArray);
[self writePlist];
[self readPlist];

[self dismissViewControllerAnimated:YES completion:nil];

}

私の問題は、出力が毎回あるということです:

2012-05-31 18:35:05.378 WeighMe[780:f803] /Users/jb/Library/Application Support/iPhone     Simulator/5.1/Applications/BE9D2906-50FA-4850-B3A5-47B454601F61/Documents/WeightsList.plist
2012-05-31 18:35:05.829 WeighMe[780:f803] Weight Entered: (null)
2012-05-31 18:35:05.830 WeighMe[780:f803] (null)
2012-05-31 18:35:05.831 WeighMe[780:f803] (
32432
)

これは plist が正しく機能しないという問題ですか、それとも必要なデータを取得していない NSMutableArray ですか。

デバッガーを使用してランタイムをステップ実行しようとしましたが、適切に使用する方法がわかりません。

どんな助けでも素晴らしいでしょう!ありがとうございます。

4

1 に答える 1

1

-(void) readPlist メソッドで配列を再宣言しています。

NSMutableArray *weightsArray = [[NSMutableArray alloc] initWithContentsOfFile:filePath]; 

その行は次のようになります。

weightsArray = [[NSMutableArray alloc] initWithContentsOfFile:filePath]; 
于 2012-05-31T17:59:33.597 に答える