Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有可能像 HTML 单元格内容一样在 iOS 中加入 UICollectionViewCells 可以加入 rowspan 或 colspan?
默认情况下UICollectionViewFlowLayout,您不能将单元格放置在 2 行中,因此在这种情况下“行跨度”是不可能的。您可以设置单元格的宽度,因此“colspan”是可能的“。但如果你想要两者,你必须编写一个自定义布局。
UICollectionViewFlowLayout
该项目可以帮助您:
https://github.com/bryceredd/RFQuiltLayout
这对我很有用。