Edit: As Adam Washington points out, as from Beta 6, this code works as is, so the question is no longer relevant.
I am trying to create and iterate through a two d
As stated by the other answers, you are adding the same array of rows to each column. To create a multidimensional array you must use a loop
var NumColumns = 27 var NumRows = 52 var array = Array>() for column in 0..NumColumns { array.append(Array(count:NumRows, repeatedValue:Double())) }