I am trying to display a modal after the accessoryView on a cell is selected.
I currently have a segue from my TableViewCell to display a modal, and I manually call performSegueWithIdentifier on this segue when the accessory button is clicked.
The problem is that the segue gets triggered from both selecting a cell and selecting an accessory view. I only want the segue to be triggered on accessory view selection.
What are the solutions?