SE
l0c0
x
0
y
0
w
320
h
568
有一个这样的plist,当我尝试这样访问l0c0的时候,总会遇到错误
NSString *path = [[NSBundle mainBundle]pathForResource:@"文件名" ofType:@"plist"];
NSDictionary *modelList = [NSDictionary dictionaryWithContentsOfFile:path];
for(NSDictionary *model in modelList) {
NSLog(@"%@", model); //只能打印出 SE
for (NSDictionary *frame in model) { //出错
NSLog(@"%@", frame);
}
}
请问要如何才能正确取得l0c0、x、y等数据?
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
SE这个key对对应的是一个字典,你用数组遍历当然取不出,直接这样取就行了