How can NSCollectionView items begin at the second cell and leave the first cell empty? (View Example)
Asked
Active
Viewed 53 times
0
-
2Just add dummy transparent cell – SPatel Mar 23 '21 at 12:48
1 Answers
0
Ugly easy way:
Just disable user interaction in the first cell and hide it.
view.isHidden = true
view.isUserInteractionEnabled = false
Correct way:
Register a new invisible cell class with the NSCollectionView and return in just on the first row.

Rafael Francisco
- 300
- 2
- 8