I have a UITableView
with dynamic rows and one static row. I have a long press gesture to reorder the rows.
My problem is that the static row, which is meant to be the last row of the tableView cannot be reordered. So how could I not trigger the gesture on this particular row and make it impossible to drag the rows under this one? Is it something I should implement in my reordering methods (I actually use an external library) or is there a way to deactivate the gesture and to say that the last row of my tableView is the last dynamic row and not the static one?