小编典典

Swift数组-检查索引是否存在

swift

在Swift中,是否有任何方法可以检查数组中是否存在索引而不会引发致命错误?

我希望我可以做这样的事情:

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
}

但是我明白了

致命错误:数组索引超出范围


阅读 423

收藏
2020-07-07

共1个答案

小编典典

Swift中的一种优雅方式:

let isIndexValid = array.indices.contains(index)
2020-07-07