I want to block a cell to be reordered.
For example:
I have a tableview with 4 rows but don't want that the first cell can be reordered.
Is that possible?
I've tried to use:
if(indexPath.row == 0)
{
[cell setEditing:NO animated:NO];
}
But doesn't work.
Thanks.