iOS Swift删除移除数组Array的元素对象
2022-01-26 本文已影响0人
Lee坚武
更多方法交流可以家魏鑫:lixiaowu1129,一起探讨iOS相关技术!
在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)
}