我有以下功能:
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 <...>
但是,我不知道为什么我仍然会收到错误,据我所知,按照前一个帖子的解决方案。