iOS Swift:通过 CollectionView 上的按钮为 CollectionViewCell 元素设置动画

iOS Swift: animating CollectionViewCell elements from a button on the CollectionView

我在 CollectionView 上有一个按钮,可以为 CollectionView 上的标签设置动画(前后滑动)。我想知道是否可以使用相同的按钮为单元格上的标签设置动画。

我正在考虑 collectionView:performAction 作为一个可能的解决方案,但我想在花费太多时间来找出可能行不通的东西之前获得一些其他想法。

宾果游戏:

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