我在CollectionView上有一个按钮,可以激活CollectionView上的标签(将它们向前和向后滑动)。我想知道是否可以使用相同的按钮为单元格上的标签设置动画。
我正在考虑将collectionView:performAction作为一种可能的解决方案,但是我想在得到一些可能无效的东西之前得到一些其他的想法。
答案 0 :(得分:1)
for item in self.collectionView!.visibleCells() as [UICollectionViewCell] {
var indexpath : NSIndexPath = self.collectionView!.indexPathForCell(item as CollectionViewCell)!
var cell : CollectionViewCell = self.collectionView!.cellForItemAtIndexPath(indexpath) as CollectionViewCell
//access cell data
println(cell.labelName.text)
}
找到here