无法读取和保存.plist中的数字

时间:2010-03-21 20:33:20

标签: objective-c nsnumber property-list

我创建了一个名为propertys.plist的属性列表。然后我写了这个:

NSString *path = [[NSBundle mainBundle] bundlePath];
NSString *finalPath = [path stringByAppendingPathComponent:@"speicherung.plist"];
NSMutableArray *plistData = [[NSMutableArray arrayWithContentsOfFile:finalPath] retain];
int a = [[plistData objectAtIndex:1] intValue];
NSLog(@"%i", a); // returns always 0 - Even If I set a other number in the plist
a = a + 1;
NSNumber *ff = [NSNumber numberWithInt:a];
[plistData insertObject:ff atIndex:1];
NSLog(@"%@", [plistData objectAtIndex:1]); // returns 1 - right, because 0 + 1 = 1
[plistData writeToFile:finalPath atomically:YES];

当我再次运行此代码时,我总是在第一个NSLog中获得数字0,在第二个NSLog中获得数字1。为什么呢?

此代码适用于iPhone。

1 个答案:

答案 0 :(得分:3)

[plistData objectAtIndex:1];

这是一个NSNumber。因此,此ObjC对象的地址将转换为整数并分配给a,从而给出奇怪的值。使用-intValue从中提取整数。

int a = [[plistData objectAtIndex:1] intValue];