我在尋找真的很多,但也許我無法理解結果。在swift中創建數組
我發現只有在SWIFT一個陣列具有與指數INT值
var myArray = [String]()
myArray.append("bla")
myArray.append("blub")
println(myArray[0]) // -> print the result bla
但我將添加一個字符串的字符串作爲索引鍵
var myArray = [String:String]()
myArray.append("Comment1":"bla")
myArray.append("Comment2":"blub")
println(myArray["Comment1"]) // -> should print the result bla
我應該如何申報數組,以及我可以如何將一個值附加到這個數組?
您是否閱讀過[Swift編程語言](https://developer.apple.com/library/ios/documentation/Swift/Conceptual/Swift_Programming_Language/)中的「集合類型」一章? – 2015-03-19 10:31:36
這與'xcode IDE'有什麼關係? – Popeye 2015-03-19 10:32:04