tvOS:像主屏幕一样创建UICollectionViewCell效果

时间:2015-10-23 06:34:28

标签: tvos apple-tv

我正在为tvOS使用UICollectionViewCell,每个单元格都包含一个图像,我可以使用adjustsImageWhenAncestorFocused UIImageView属性来获得某种视差效果。但我想知道如何让它看起来像tvOS主屏幕。

渴望最终结果:

enter image description here

1 个答案:

答案 0 :(得分:2)

发现问题。 Clip Sub Views应禁用UIImageView,否则视差效果将无法正常工作。但是,集合视图单元格的剪辑子视图可以(在我的情况下必须是)启用。

参考:https://developer.apple.com/tvos/human-interface-guidelines/

    代码中的
  • [cell.imageView setClipsToBounds:NO];

  • 界面构建器中的

enter image description here