如何将字典写入plist中的数组?

时间:2013-07-29 00:47:46

标签: objective-c

我有一个这样结构的plist:

<dict>
<key>memos</key>
<array>
    <dict>
        <key>title</key>
        <string>First Memo</string>
        <key>content</key>
        <string>Testing one two three</string>
        <key>category</key>
        <string>testing</string>
    </dict>
    <dict>
        <key>title</key>
        <string>Test</string>
        <key>content</key>
        <string>This is a test memo.</string>
        <key>category</key>
        <string>testing</string>
    </dict>
</array>
</dict>

我把它读成这样的数组:

self.memos = [NSMutableArray array];
NSString *path = [[NSBundle mainBundle] pathForResource:@"Memos" ofType:@"plist"];
NSDictionary *tempDictionary = [NSDictionary dictionaryWithContentsOfFile:path];
NSArray *tempArray = [tempDictionary objectForKey:@"memos"];
for(id dict in tempArray) {
    NSString *title = [dict objectForKey:@"title"];
    NSString *content = [dict objectForKey:@"content"];
    NSString *category = [dict objectForKey:@"category"];
    Memo *m = [[Memo alloc] initWithTitle:title content:content category:category];
    [self.memos addObject:m];
}

我的问题是:如何在plist中添加一个新的Memo(三个字符串的字典)(具体来说,我的plist中的Memo字典数组)?

3 个答案:

答案 0 :(得分:0)

你必须在NSDictionary中获取plist,然后将Memos数组读入NSMutableArray,向其中添加一个对象,然后将可变备忘录数组作为备忘录保存在字典中并将其写回plist文件。

答案 1 :(得分:0)

更改此行:

NSArray *tempArray = [tempDictionary objectForKey:@"memos"];

self.memos = [tempDictionary objectForKey:@"memos"];

希望它有所帮助...

并确保将self.memos数据写回文件。

另请注意,您无法编辑捆绑包中的文件。在开始编辑并保存之前,您需要确保将其复制到文档目录。

答案 2 :(得分:0)

试试这个:

[tempArray addObject:NewDictionary That you want to insert];

然后将此临时数组添加到TempDictionary。

[tempDictionary setObject:tempArray forKey:@"memos"];

然后将tempdictionary保存到文件。

[tempDictionary writeToFile:path atomically:YES];

希望它能帮助!!

相关问题