I need to create a two-dimensional array that contains a dictionary. I've declared it this way but it throws me wrong
var miArray = [String: AnyObject][ ][ ]
To fill it in, it would be:
miArray[columna][linea] = ["llave1":"dato1", "llave2":"dato2"]
How many ways or forms would there be to declare it?