tvOS:在 UICollectionViewCell 上创建视差效果

tvOS: Creating parallax effect on UICollectionViewCell

我正在使用 iOS 9 个故事板来创建 tvOS 应用。

该应用有一个 UICollectionView。我在 Assets.xcassets collection.

中定义了一个 Apple TV 图像堆栈,其中包含正面、中间和背面资产

当用户突出显示 UICollectionViewCell 时,我希望有一个 'highlight' 类似于应用程序图标的效果,用户可以 'circle' 他们的手指在 Siri 遥控器上暴露视差效果并发光。

有人有这方面的经验吗?

刚刚找到答案。希望这对其他人有帮助:

- (UICollectionViewCell *)collectionView:(UICollectionView *)cv cellForItemAtIndexPath:(NSIndexPath *)indexPath {
    UICollectionViewCell *cell = [cv dequeueReusableCellWithReuseIdentifier:@"CameraCell" forIndexPath:indexPath];

    UIImage *image = [_cameras objectAtIndex:indexPath.row];
    UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
    imageView.userInteractionEnabled = YES;
    imageView.adjustsImageWhenAncestorFocused = YES;
    imageView.frame = CGRectMake(0, 0, 853, 560);
    [cell addSubview:imageView];

    return cell;
}