gpt4 book ai didi

ios - Swift 2 - 将选定的 CollectionView 单元格放在其他单元格前面

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:11:05 26 4
gpt4 key购买 nike

我的 View Controller 中有一个 UICollectionView。它已经设置好并且工作正常。

我试图在按下单元格本身内的按钮时缩放单元格。

我的代码缩放了单元格但是,我找不到强制选择的单元格转到其他单元格前面的方法。现在选择的单元格总是在选择之前的单元格之后。

如何强制选中的单元格在其他单元格之前缩放?

@IBAction func detailBtnAction(sender:UIButton){

let indexUser = (sender.layer.valueForKey("indexBtn")) as! Int
let indexPath = NSIndexPath(forItem: indexUser, inSection: 0)
let feedCell = feedCollectionView.cellForItemAtIndexPath(indexPath)
feedCell?.bringSubviewToFront(feedCollectionView)

feedCell?.contentView.bringSubviewToFront(feedCollectionView)

UIView.animateWithDuration(1.0) { () -> Void in
feedCell?.transform = CGAffineTransformMakeScale(5, 5)
}

}

最佳答案

看来你把事情的顺序搞混了。

来自文档:

Moves the specified subview so that it appears on top of its siblings.

func bringSubviewToFront(_ view: UIView)

Parameters

view - The subview to move to the front.

This method moves the specified view to the end of the array of views in the subviews property.

所以你的电话:
feedCell?.contentView.bringSubviewToFront(feedCollectionView)
实际上意味着单元格内容 View 应该将 feedCollectionView 移到前面。
现在,这是一些基于命名的有根据的猜测,但它应该看起来像这样:
feedCollectionView.bringSubviewToFront(feedCell?)

您可以将单元格本身传递到那里,因为它继承自 UIView

关于ios - Swift 2 - 将选定的 CollectionView 单元格放在其他单元格前面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34067009/

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