gpt4 book ai didi

uicollectionview - tvos 提升 Collection View 单元格在焦点上

转载 作者:行者123 更新时间:2023-12-04 01:50:01 24 4
gpt4 key购买 nike

我想增加集中在 Collection View 中的 UICollectionViewCell 的大小。

如何在聚焦时增加 UICollectionViewCell 的大小?我不能用 CGAffine 做到这一点,我试过这个:

cellChosen.transform = CGAffineTransform(scaleX: 2, y: 2)

但是没有用。我做错了吗?

还有一个名为 adjustImageWhenAncestorFocused 的 UIImageView 效果非常酷。是否可以在电池上使用它?

重要提示:我使用的是 swift 3,单元格有一个 UILabel 和一个 UIImageView。

最佳答案

您需要在 didUpdateFocusInContext 中使用转换。例如

- (void)didUpdateFocusInContext:(UIFocusUpdateContext *)context withAnimationCoordinator:(UIFocusAnimationCoordinator *)coordinator
{
if (self.focused)
{
// Apply focused appearence,
// e.g scale both of them using transform or apply background color
}
else
{
// Apply normal appearance
}
}

关于uicollectionview - tvos 提升 Collection View 单元格在焦点上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40875937/

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