gpt4 book ai didi

iphone - 如何向数组添加元素(这是 plist 中字典(项目)中的元素)?

转载 作者:行者123 更新时间:2023-12-03 19:01:59 25 4
gpt4 key购买 nike

在plist中,我想在每个字典(项目)中保留一个数组。如果创建了它,我如何将元素发送到该数组。例如,如果我为用户创建了一个帐户,我将保留名称,性别,电子邮件,密码字典(项目)中的所有内容,以类似的方式包含收件箱消息的数组。然后我想知道如何将即将到来的消息存储到该收件箱数组中。

最佳答案

NSArray *array=[NSArray arrayWithObjects:<#(id), ...#>, nil];

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);
NSString *libraryDirectory = [paths objectAtIndex:0];
NSString *location = [libraryDirectory stringByAppendingString:@"/somefilename.plist"];
[array writeToFile:location atomically:YES];

数组可以按如下方式加载:
路径 = [bundle pathForResource:@"file"ofType:@"plist"];array = (path!= nil ? [NSArray arrayWithContentsOfFile:location] : nil);

关于iphone - 如何向数组添加元素(这是 plist 中字典(项目)中的元素)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11119209/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com