Reputation: 4844
is it possible to control the layout of a UICollectionViewCell
as to give it an absolute x or y position?
I want to use a UICollectionView
, in each row of a table in order to create a simple 5 day calendar. At the moment I am just positioning a set of views with absolute x values in the cell
Upvotes: 0
Views: 606
Reputation: 7484
Yes, but you will need to subclass UIcollectionViewLayout
.
This tutorial help me figure things out.
Upvotes: 1