When I change my uitableview to edit mode, i’d like the user to be able to select a cell without the segue taking place. The segue was linked in the storyboard. Is there a way to disable the segue during edit mode?
I can’t disable interaction with the cell during edit more because I need to pick up on the editing control (insert button) press.
In your view controller, override:
Inside that method check if this is the correct segue, and verify the edit state. If the editing is on, return
NO; otherwise, returnYES.