gpt4 book ai didi

ios - 快速使用按钮让collectionView隐藏

转载 作者:行者123 更新时间:2023-11-30 13:54:44 24 4
gpt4 key购买 nike

感谢您阅读我的问题,就像标题所说,如何使用按钮来控制 collectionView 显示/隐藏,如 hidden = false

I want the collectionView to hide it in viewDidload(ViewController) method and show when I press the button.

func collectionView(collectionView: UICollectionView, didSelectItemAtIndexPath 
indexPath: NSIndexPath)
{
collectionView.hidden = true
}

我只能在 func 中调用 collectionView ,我该怎么做?

最佳答案

在viewDidLoad中,self.collectionView.hidden = true。然后您可以使用以下方法切换隐藏/显示:

@IBAction func toggleCollectionViewHideShow(sender: UIButton) {
self.collectionView.hidden = !self.collectionView.hidden
}

关于ios - 快速使用按钮让collectionView隐藏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33781751/

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