I am trying to fulfill the following 3 requirements:
- Display
UITableViewthat has content sections. - Be able to rearrange table rows between sections.
- Be able to rebuild partitions, similar to how row rearrangement works.
(Also, I cannot use UICollectionView)
Currently, I can do the first two without any problems. I've been developing iOS for some time, but I'm at a dead end on how to actually rebuild partitions and make it as if you were moving a line.
I tried to make a nested table in UITableViewCelland pretend that the first cell is the "header", but this only works for moving partitions and breaks down the possibility of rearranging rows between partitions (admittedly, I could not go wrong).
I understand that this is a difficult question, but any help would be appreciated - even if the answer is “cannot be completed”.
source
share