Eu fico tão confuso sobre arrays 2D no Swift. Deixe-me descrever passo a passo. E você poderia me corrigir se eu estiver errado.
Em primeiro lugar; declaração de uma matriz vazia:
class test{
var my2Darr = Int[][]()
}
Em segundo lugar, preencha a matriz. (como my2Darr[i][j] = 0
onde i, j são variáveis for-loop)
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? */
}
}
}
}
E por último, Editando o elemento da 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))
E você realmente deve atualizar para uma versão beta mais recente. Int[][]()
não é mais sintaxe válida. Foi alterado para [[Int]]()
.