林之外定義,我想這樣的功能中填寫詞典:不能訪問字典的功能
var categories = [String:String]()
func addCategory (cat: String, symptomID: String) ->() {
categories[cat] = symptomID
}
但我不斷收到Cannot assign to the result of this expression
。
考慮到Swift Documentation我不明白爲什麼這不起作用。
有趣的是,在函數中定義字典並不會給我這個錯誤。
你什麼時候調用這個函數?你的代碼沒有任何錯誤。 –
我想我找到了問題。我在一個顯然不工作的結構中使用它 – Rico