gpt4 book ai didi

objective-c - tvOS:在 UICollectionViewCell 上创建视差效果

转载 作者:太空狗 更新时间:2023-10-30 03:31:36 26 4
gpt4 key购买 nike

我正在使用 iOS 9 Storyboards 创建一个 tvOS 应用。

该应用有一个 UICollectionView。我在我的 Assets.xcassets 集合中定义了一个 Apple TV 图像堆栈,其中包含前、中和后 Assets 。

当用户突出显示 UICollectionViewCell 时,我希望有一个类似于应用程序图标的“突出显示”效果,用户可以在 Siri Remote 上“圈出”他们的手指以显示视差效果,并且发光。

有没有人有这方面的经验?

最佳答案

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

- (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;
}

关于objective-c - tvOS:在 UICollectionViewCell 上创建视差效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32792329/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com