I have a subclassed UITableViewCell and now I also need a custom delete button for this cell. What should I do in this case? Do I add this button in the layoutSubView? I already have my delete button on the nib file of the cell.
What I have now in the custom cell is to show the button in the didTransitionToState:(UITableViewCellStateMask) state. This works, however it shows the delete button. I don't want it to show the delete button and instead I want the user to just press the button to delete the row. How can I do this?