我的应用程序正在侦听套接字事件,该事件告诉它屏幕上的while
当前正在显示的数据有更新。发生这种情况时,我想从数据源和collectionView
中删除与更新的行相对应的单元格。我可以这样做,如下所示:
collectionView
重新加载collectionView
collectionView
问题是它会更新整个socket.on(DATA_UPDATE) { (data, ack) in
if let dat = data[0] as? [String: Any] {
if let tabId = dat["tabId"] as? Int, let resId = dat["resId"] as? Int {
let remainingData = self.data?.filter{ $0.tabId != tabId }
if resId == self.restaurant?.id && remainingData?.count != self.data?.count {
self.data = remainingData
self.filterTableDataAndRelaod()
}
}
}
}
并向上滚动到顶部。我想使用以下代码代替它:
collectionView
但是,我不确定如何在上面的代码片段中获取self.data.remove(at: indexPath.row)
collectionView.deleteItems(at: [indexPath])
。
答案 0 :(得分:1)
您可以尝试
var toDele = [IndexPath]()
if let tabId = dat["tabId"] as? Int, let resId = dat["resId"] as? Int {
for (index,item) in self.data?.enumerated() {
if item.tabId == tabId {
toDele.append(IndexPath(item:index,section:0))
}
}
for item in toDele {
self.data?.remove(at:item.item)
}
collectionView.deleteItems(at:toDele )
}
或者如果您没有重复
if let tabId = dat["tabId"] as? Int, let resId = dat["resId"] as? Int {
if let ind = self.data?.firstIndex(where:{ $0.tabId == tabId }) {
self.data?.remove(at:ind)
collectionView.deleteItem(at:IndexPath(item:ind,section:0))
}
}