Wie greife ich in Objective C korrekt auf Wörterbuchdaten in plist zu?
漂亮男人
漂亮男人 2017-05-31 10:36:25
0
1
795
<?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>

Es gibt eine Plist wie diese. Wenn ich versuche, auf l0c0 auf diese Weise zuzugreifen, treten immer Fehler auf

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);
    }
}

Wie kann ich l0c0, x, y und andere Daten korrekt erhalten?

漂亮男人
漂亮男人

Antworte allen(1)
曾经蜡笔没有小新

SE这个key对对应的是一个字典,你用数组遍历当然取不出,直接这样取就行了

NSString *path = [[NSBundle mainBundle]pathForResource:@"文件名" ofType:@"plist"];
NSDictionary *modelList = [NSDictionary dictionaryWithContentsOfFile:path];
for(NSDictionary *model in modelList) {
    NSLog(@"%@", model); //只能打印出 SE
    NSDictionary *frame = model[@"l0c0"];
    NSLog(@"%@", frame);    
}
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage