我正在尝试返回符合以下条件的对象:
例如:
let array = [incomplete, unlisted, listed]
for i in 0...array.count - 1 {if array[i].dataId == dataId {)}
我想返回具有属性数据的 array
中3的哪个对象: incomplete, unlisted
或 {{ 1}}
答案 0 :(得分:-2)
这里要做的很棒的事情是使用filter
。
let filteredObject = array.filter { $0.dataId == filterId }
$0
是数组中的对象。