微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

xcode – 将数组保存到plist

我正在尝试将一些项目存储到pList中.这是数组循环:

for (id obj in items)
NSLog(@"obj: %@",obj);

输出NSLog:

2013-03-27 13:00:40.072 mycode[47436:c07] obj: Red
2013-03-27 13:00:40.073 mycode[47436:c07] obj: Blue
2013-03-27 13:00:40.073 mycode[47436:c07] obj: Green

// arrayWithObjects有效.但我不知道如何(循环?)通过我的项目保存到plist文件

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);
        Nsstring *documentsDirectory = [paths objectAtIndex:0];
        Nsstring *path = [documentsDirectory stringByAppendingPathComponent:@"data.plist"];


    NSFileManager *filemgr;
    filemgr = [NSFileManager defaultManager];

    if ([filemgr fileExistsAtPath: path]) {
        NSLog(@"%@",path);

    NSMutableDictionary *plist = [[NSDictionary dictionaryWithContentsOfFile:path] mutablecopy];
    NSMutableArray *newArray = [[[NSMutableArray alloc] init] autorelease];
    newArray = [NSArray arrayWithObjects:@"Red",@"Green",@"Blue" nil]; // <--- WORKS!
    newArray = [NSArray arrayWithObjects:items,nil]; // <-- ? 
    [plist setobject:newArray forKey:@"Hi"];
    [plist writetoFile:path atomically:YES];
    [plist release];


    } else {
        NSLog(@"File not found");
    }

    [filemgr release];

解决方法

也许这段代码可以帮助你.

NSMutableArray *newArray = [[[NSMutableArray alloc] init] autorelease];
NSMutableArray *targetArray = [[[NSMutableArray alloc] init] autorelease];

newArray = [NSArray arrayWithObjects:@"Red",@"Blue" nil];
for(int i=0;i<newArray.count;i++)
{
 [targetArray addobject:[newArray objectAtIndex:i]];

}
[plist setobject:targetArray forKey:@"Hi"];
[plist writetoFile:path atomically:YES];

或另一种方法

NSMutableArray *targetArray = [[[NSMutableArray alloc] init] autorelease];

for (id obj in items)
{
 [targetArray addobject:items];
 }
[plist setobject:targetArray forKey:@"Hi"];
[plist writetoFile:path atomically:YES];

希望这可以帮助 !!!

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐