文档在这里:https://developer.apple.com/documentation/uikit/uicollectionview/1618056-visiblecells
但是我似乎无法使用: notesCollectionView.visibleCells()为! [NotesCollectionViewCell]
有错误: “无法不带参数调用'visibleCells'”
如何在UICollectionView中仅获取visibleCells?
答案 0 :(得分:1)
visibleCells
是一个变量,但是您正在使用函数调用语法。
删除()应该可以解决问题。
if let cells = notesCollectionView.visibleCells as? [NotesCollectionViewCell]
{
// Do your magic here.
}