Swift中 删除Array的元素对象

Swift中Array的删除对象

在Swift中数组Array没有removeObject的方法

1、找到下标

 let model_index = selectedArray.index(where: { (arr) -> Bool in

   ((selectedBeaconArray.index(of: vbModel)) != nil)

})

2、删除下标对应的元素

if model_index != nil{

  selectedBeaconArray.remove(at: model_index ?? 0)

}

上一篇:PLSQL 注册码


下一篇:MySQL: ON DUPLICATE KEY UPDATE 用法 避免重复插入数据