UITableView has that built-in animation in which after a cell is reordered, it lays gently into the vacant space. Is there a where to tap into some sort of notification after that animation ends? I would like to call a method upon completion. At the moment I'm using performSelector:withObject:afterDelay: which works fine at the moment, but I would like to know if it's possible to tap into animation complete.
To reiterate, I'm not talking about custom animation, only the animation built into UITableView.
I've been searching around and can't seem to gather an answer.