我正在尝试从 plist 中获取整数值。
NSString *path = [[NSBundle mainBundle] pathForResource:@"Prop" ofType:@"plist"];
NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:path];
int number = [[[dict objectForKey:@"Root"] objectForKey:@"Quant"] intValue];
NSLog(@"Quant is %d",number);
列表:
<dict>
<key>Quant</key>
<integer>5</integer>
</dict>
应用程序运行但数字的值始终为0。
我整天阅读各种手册,但找不到错误。