swift 在swift中遍历字典。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift 在swift中遍历字典。相关的知识,希望对你有一定的参考价值。

var a:Dictionary = [
    "who":[
        "does":[
            "you":[]
        ]
    ],
    "what":[
        "do":[]
    ],
    "does":[
        "he":[
            "know":[]
        ],
        "or":[]
    ]
]

func find(input:String) -> Bool {
    let words = input.componentsSeparatedByString(" ")
    var current = a
    for(var i=0;i<words.count;i++) {
        if let checker = current[words[i]] {
            
        }
    }
}

以上是关于swift 在swift中遍历字典。的主要内容,如果未能解决你的问题,请参考以下文章

swift实现遍历嵌套字典并修改其中的值

swift实现遍历嵌套字典并修改其中的值

SWIFT:遍历转换为字典的 JSON 对象

使用 swift 2.1 遍历一个 JSON 命名的字典数组

Swift学习笔记(二十二)——字典的基本操作

Swift:遍历 plist