Hi
I want to intercept taps on the circular Deletion control (example of Deletion Control button) on my TableView to know when the "Delete" button comes in and I can change my cell layout. Can Anyone help me? thanks a lot!
Hi
I want to intercept taps on the circular Deletion control (example of Deletion Control button) on my TableView to know when the "Delete" button comes in and I can change my cell layout. Can Anyone help me? thanks a lot!
You can handle "Delete" button appearance if you subclass UITableViewCell
and override -willTransitionToState
and/or -didTransitionToState
methods there. Like:
- (void)willTransitionToState:(UITableViewCellStateMask)state{
if (state & UITableViewCellStateShowingDeleteConfirmationMask)
// Delete button will appear
}