拍摄 UICollectionViewCell 的快照

Taking a snapshot of a UICollectionViewCell

我正在制作 tvOS 应用程序,我希望它看起来与电影应用程序相似。因此我有一个UICollectionView。现在我的细胞不只是简单的 UIImageViews,而是有点复杂。

我还是希望有漂亮的焦点视觉效果(使单元格图像更大,并在用户滑动遥控器时在其上产生光效)。所以我想做的是渲染我的单元格,然后拍摄它的快照,然后显示这个快照而不是单元格本身。我是这样做的:

extension UIView {
    var snapshot : UIImage {
        UIGraphicsBeginImageContextWithOptions(bounds.size, true, 0.0)
        drawViewHierarchyInRect(self.bounds, afterScreenUpdates: true)
        let image = UIGraphicsGetImageFromCurrentImageContext()
        UIGraphicsEndImageContext()
        return image
    }
}

...

func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
    let cell = NSBundle.mainBundle().loadNibNamed("ContentCell", owner: self, options: nil)[0] as! ContentCell
    cell.update()
    let cellSnapshot = cell.snapshot

    let snapshotCell = collectionView.dequeueReusableCellWithReuseIdentifier("SnapshotCell", forIndexPath: indexPath) as! SnapshotCell
    snapshotCell.snapshotImageView.image = cellSnapshot
    return snapshotCell
}

然而,这只是显示一个黑色单元格。有什么想法我可能做错了什么吗?

你应该看看here

在Swift中会是这样的:

extension UIView {
    var snapshot : UIImage? {
        var image: UIImage? = nil
        UIGraphicsBeginImageContext(bounds.size)
        if let context = UIGraphicsGetCurrentContext() {
            self.layer.renderInContext(context)
            image = UIGraphicsGetImageFromCurrentImageContext()
        }
        UIGraphicsEndImageContext()
        return image
    }
}