循环 – 在swift中循环遍历字典

前端之家收集整理的这篇文章主要介绍了循环 – 在swift中循环遍历字典前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试复制一个for循环,我在Objective C中做了但是得到一个“’AnyObject’没有名为’GeneratorType’的成员错误
for (NSString *file in [dict objectForKey:@"Files"])
            {
    NSString *content = [[source stringByAppendingPathComponent:@"Contents"] stringByA
            }

这是我的斯威夫特

for file in dict.objectForKey("Files") {
                let content:String = source.stringByAppendingPathComponent("Contents").stringByAppendingPathComponent(file)
                }

我已经尝试为dict定义一个holder变量.谁能看到我做错了什么,拜托?

这不是字典中的循环.它通过存储在其中一个字典键中的数组循环.如果你有一个字符串数组作为字典的一个键,那么这就是你想要做的.
if let arr = dict["Files"] as? [String] {
    for file in arr {

    }
}

如果你确实想要遍历字典,可以在Swift中实现,可以像这样完成:

for (key,value) in dict {
    println("key is - \(key) and value is - \(value)")
}
原文链接:https://www.f2er.com/swift/319942.html

猜你在找的Swift相关文章