En Swift, ¿hay alguna forma de verificar si existe un índice en una matriz sin que se genere un error fatal?
Esperaba poder hacer algo como esto:
let arr: [String] = ["foo", "bar"]
let str: String? = arr[1]
if let str2 = arr[2] as String? {
// this wouldn't run
println(str2)
} else {
// this would be run
}
Pero consigo
error fatal: índice de matriz fuera de rango
index < array.count
?