排序 plist 数据

Sorting plist data

我在 plist 中有一些重复数据,然后将其提取到字典中并显示在我的应用程序中。唯一的问题是它需要与我在 plist 中的顺序相同,但显然,字典无法排序并且它未排序。那么我该如何实现呢?

我的 plist 数据重复这样

然后我将其转换为 [Int : ItemType] 类型的字典,ItemType 是我的数据协议,如下所示:

class ExhibitionUnarchiver {
    class func exhibitionsFromDictionary(_ dictionary: [String: AnyObject]) throws -> [Int : ItemType] {
        var inventory: [Int : ItemType] = [:]
        var i = 0;

        print(dictionary)

        for (key, value) in dictionary {
            if let itemDict = value as? [String : String],
            let title = itemDict["title"],
            let audio = itemDict["audio"],
            let image = itemDict["image"],
            let description = itemDict["description"]{
                let item = ExhibitionItem(title: title, image: image, audio: audio, description: description)
                inventory.updateValue(item, forKey: i);
                i += 1;
            }
        }

        return inventory
    }
}

这会产生这样的字典:

[12: App.ExhibitionItem(title: "Water Bonsai", image: "waterbonsai.jpg", audio: "exhibit-audio-1", description: "blah blah blah"), 17: App.ExhibitionItem.....

我希望自从我创建了密钥的 Int 之后我就可以对其进行排序,但到目前为止我还没有运气。您可能会说我是 swift 的新手,所以请提供您认为相关的任何信息。谢谢!

字典没有顺序。如果您需要特定顺序,请将 root 设为 Array:


或手动按键排序:

var root = [Int:[String:String]]()
root[1] = ["title":"Hi"]
root[2] = ["title":"Ho"]

let result = root.sorted { [=10=].0 < .0 }

print(result)

打印:

[(1, ["title": "Hi"]), (2, ["title": "Ho"])]