参考通用类型'词典'需要< ..>中的参数

时间:2016-01-30 07:34:07

标签: swift

我有以下功能:

func createEventDictionaryFromType(type: String) -> Dictionary<String, Double> {
var DurationsArray = [0.1, 3.4, 5.1]
if (type == "k"){
    var durationIndex = arc4random_uniform(3)
    return ["duration" : DurationsArray[Int(durationIndex)]]
}
if (type == "g"){
    var durationIndex = arc4random_uniform(3)
    return ["duration" : DurationsArray[Int(durationIndex)]]

}

}

我看到这个帖子:Swift error: Reference to generic type Dictionary requires arguments in <...>

但是,我不知道为什么我仍然会收到错误,据我所知,按照前一个帖子的解决方案。

0 个答案:

没有答案