Is there a delegate method or something that I can implement that allows me to do something
when action buttons of my tableview cell is shown and hidden again?
The tableview delegate methods:
-(void)tableView:(UITableView *)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath
and
-(void)tableView:(UITableView *)tableView didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath
does the trick.