Swift首先在集合视图中选择

时间:2018-04-19 19:24:25

标签: swift uicollectionview uicollectionviewcell

我正在尝试在集合视图中获取第一个选定的单元格。它显示为零,但在应用程序中有细胞出现。 clientCollectionView也即将出现。这是我正在尝试使用的功能

Rows(iLine).EntireRow.Delete

1 个答案:

答案 0 :(得分:0)

func currentClient() -> Client? {

// You haven't really explained what "clientsCollectionView" is
// I suspect you just need to replace it with a reference to the
// actual collection view, as shown below. 

let idx = self.collectionView?.indexPathsForSelectedItems?.first
guard let firstSelected = idx?.row else {
    return nil
}
return clients()[firstSelected]
}

见这里:https://developer.apple.com/documentation/uikit/uicollectionviewcontroller/1623983-collectionview

您可能正在引用其他实例...但不是与集合视图控制器关联的实例。