Created
March 7, 2021 10:04
-
-
Save KrauserHuang/b02eabdf9a9dea4e886d8715d2daafdf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fullScreenSize = UIScreen.main.bounds.size | |
view.backgroundColor = .white | |
// 建立UICollectionViewFloatLayout | |
let layout = UICollectionViewFlowLayout() | |
layout.sectionInset = UIEdgeInsets(top: 5, left: 5, bottom: 5, right: 5) | |
// 設定cell上下間距 | |
layout.minimumLineSpacing = 5 | |
// 設定cell尺寸 | |
layout.itemSize = CGSize(width: fullScreenSize.width / 3 - 10, height: fullScreenSize.width / 3 - 10) | |
// 設定header/footer大小 | |
layout.headerReferenceSize = CGSize(width: fullScreenSize.width, height: 40) | |
layout.footerReferenceSize = CGSize(width: fullScreenSize.width, height: 40) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment