我正在使用iOS 9故事板创建一个tvOS应用程序。
该应用有一个UICollectionView。我在我的Assets.xcassets集合中定义了一个包含Front,Middle和Back资产的Apple TV图像堆栈。
当用户突出显示UICollectionViewCell时,我希望有一个突出显示的'效果类似于应用程序图标的效果,用户可以在其中循环播放。他们的手指放在Siri遥控器上,露出视差效果并闪耀。
有没有人有这方面的经验?
答案 0 :(得分:13)
刚刚找到答案。希望这有助于其他人:
- (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;
}