Resize UICollectionView Height

佐手、 提交于 2019-12-04 03:48:28

If you are using Interface Builder for UICollectionView initialisation, switch off "Use Autolayout" from the File Inspector in the xib file where the your CollectionView is created. Then you can change the height with setFrame or setBounds methods.

You can avoid disabling Autolayout by creating an outlet for the height constraint and then adjusting the constraint's constant in code.

Outlet

@IBOutlet weak var collectionViewVerticalConstraint: NSLayoutConstraint!

Adjustment

collectionViewVerticalConstraint.constant = 0
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!