ios – 从plist获取值的方法

前端之家收集整理的这篇文章主要介绍了ios – 从plist获取值的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个名为NumberX的整数和一个名为PlistX的plist.

int NumberX;

PlistX:

我想知道我如何使NumberX =值为3

解决方法

试试这个:
NSString *path = [[NSBundle mainBundle] pathForResource:@"PlistX" ofType:@"plist"];
NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:path];
int number = [[[[dict objectForKey:@"One"] objectForKey:@"Two"]objectForKey:@"Three"] intValue];
NSLog(@"%d",number);
原文链接:/iOS/330889.html

猜你在找的iOS相关文章