0

我是 iOS 编程的新手,我的手很脏。我在网上搜索了一些 plist 帮助,得到了一些东西并理解并使用了它,但现在我陷入了困境。我已经搜索了很多这个问题。但我只是无法为我找到正确的答案。

问题:我的 UI 只有 2 个文本字段和 1 个保存按钮。1 个文本字段采用字符串,而另一个采用数字 (int) 作为输入。

我的 plist 有 1 个字典项,有 1 个字符串项和 1 个 int 项。而已。

我从用户那里获取 2 个 UITextView 的输入,并通过保存按钮将它们保存到这个 plist 中。

问题是每当我输入新值并按下保存按钮时,它都会覆盖旧的 plist 数据。

我发现我需要阅读字典,将新值附加到它,然后将其保存回来以获得我想要的输出。但我无法抓住这个概念并将其放入代码中。一些带有解释的代码真的很有帮助。

我的保存按钮是这样工作的:

-(IBAction)saveit
{
    // get paths from root direcory
    NSArray *paths = NSSearchPathForDirectoriesInDomains (NSDocumentDirectory, NSUserDomainMask, YES);

    // get documents path
    NSString *documentsPath = [paths objectAtIndex:0];

    // get the path to our Data/plist file
    NSString *plistPath = [documentsPath stringByAppendingPathComponent:@"data.plist"];

    // set the variables to the values in the UITextField text1 n text2 respectively

   self.personName = text1.text;
    num = (int)text2.text;    


    // create dictionary with values in UITextFields
    NSDictionary *plistDict = [NSDictionary dictionaryWithObjects: [NSArray arrayWithObjects: personName, num, nil] forKeys:[NSArray arrayWithObjects: @"name", @"phone", nil]];

    NSString *error = nil;

    // create NSData from dictionary
    NSData *plistData = [NSPropertyListSerialization dataFromPropertyList:plistDict format:NSPropertyListXMLFormat_v1_0 errorDescription:&error];

    // check is plistData exists
    if(plistData)
    {
        // write plistData to our Data.plist file
        [plistData writeToFile:plistPath atomically:YES];
    }
    else
    {
        NSLog(@"Error in saveData: %@", error);
       // [error release];
    }

}

这段代码工作得很好,只是因为它过度写入了新值。请帮忙。

4

2 回答 2

0

您的 plist 将返回一个字典。将该字典检索为 NSMutableDictionary 并将您的新密钥对值添加到该字典,然后保存它。

于 2012-06-21T12:22:57.733 回答
0

像这样将数据保存为字典数组

// get paths from root direcory
NSArray *paths = NSSearchPathForDirectoriesInDomains (NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsPath = [paths objectAtIndex:0];
NSString *plistPath = [documentsPath stringByAppendingPathComponent:@"data.plist"];

//Load the original file
NSMutableArray *arr;
if([[NSFileManager defaultManager] fileExistsAtPath:plistPath])   
     //File exist load
     arr = [[NSMutableArray alloc] initWithContentsOfFile:plistPath];
else
    //File does not exist create
    arr = [[NSMutableArray alloc] init];

//Create dictionary
NSDictionary *plistDict = [NSDictionary dictionaryWithObjects: [NSArray arrayWithObjects: personName, num, nil] forKeys:[NSArray arrayWithObjects: @"name", @"phone", nil]];

//Append to arr
[arr addObject:plistDict];

//Save to file
[arr writeToFile:plistPath atomically:YES];
于 2012-06-21T12:29:54.563 回答