Me confunden tanto las matrices 2D en Swift. Déjame describirte paso a paso. ¿Y podría corregirme si me equivoco?
Ante todo; declaración de una matriz vacía:
class test{
var my2Darr = Int[][]()
}
En segundo lugar llene la matriz. (como my2Darr[i][j] = 0
donde i, j son variables de ciclo for)
class test {
var my2Darr = Int[][]()
init() {
for(var i:Int=0;i<10;i++) {
for(var j:Int=0;j<10;j++) {
my2Darr[i][j]=18 /* Is this correct? */
}
}
}
}
Y por último, elemento de edición de una matriz
class test {
var my2Darr = Int[][]()
init() {
.... //same as up code
}
func edit(number:Int,index:Int){
my2Darr[index][index] = number
// Is this correct? and What if index is bigger
// than i or j... Can we control that like
if (my2Darr[i][j] == nil) { ... } */
}
}
var my2DArray = Array(count: 10, repeatedValue: Array(count: 10, repeatedValue: 18))
Y realmente deberías actualizar a una versión beta más nueva. Int[][]()
ya no es una sintaxis válida. Se ha cambiado a [[Int]]()
.