<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>SE</key>
<dict>
<key>l0c0</key>
<dict>
<key>x</key>
<integer>0</integer>
<key>y</key>
<integer>0</integer>
<key>w</key>
<real>320</real>
<key>h</key>
<real>568</real>
</dict>
</dict>
</dict>
</plist>
There is such a plist. When I try to access l0c0 like this, I always encounter errors
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);
}
}
How can I correctly obtain l0c0, x, y and other data?
SE This key pair corresponds to a dictionary. Of course you can’t get it out using array traversal. You can just get it like this