我正在尝试复制一个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变量.谁能看到我做错了什么,拜托?
这不是字典中的循环.它通过存储在其中一个字典键中的数组循环.如果你有一个字符串数组作为字典的一个键,那么这就是你想要做的.
原文链接:https://www.f2er.com/swift/319942.htmlif let arr = dict["Files"] as? [String] { for file in arr { } }
如果你确实想要遍历字典,可以在Swift中实现,可以像这样完成:
for (key,value) in dict { println("key is - \(key) and value is - \(value)") }