I'm creating a UICollectionView with reordering capabilities. A little bit like this.
I'd like to restrict the number of elements in every section of the collection view and change the "ordering animation" (while an element is dragging).
For example:
You have a collection view with 3 sections (A, B and C).
The 3 sections are with their maximum number of elements.
You move one element from section B to section A.
The last element of section A should move to section B, and not increase the number of elements in section A.
Any idea how to implement this feature?