• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

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

[复制链接]
菜鸟教程小白 发表于 2022-12-13 12:14:09 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我的 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)
        }

}



Best Answer-推荐答案


看来你的顺序有点困惑。

来自文档:

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/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap