默认UICollctionViewFlowLayout
执行此操作:
|-------|
|A |
|-------|
|B |
|-------|
|C |
|-------|
|D |
|-------|
| |
|_______| // Notice the gap here at the bottom, where all cells start from the top
但我想这样做:
________
| |
| | // The gap is at the top now, and the cells should grow from the bottom
|-------|
|A |
|-------|
|B |
|-------|
|C |
|-------|
|D |
|_______|
如何更改UICollectionViewFlowLayout
来执行此操作?