Xcode is auto-adding an info icon / "Accessory Button" to my table cells
ios, iphone, objective-c, uitableview, xcode
Solution
During creation of the segue you have selected "Accessory Action" in the segue action popover. If you do this Xcode will set the accessory to "Detail Disclosure", because you need a tappable accessory to have an accessory action.
Select a Segue in the upper part of the popover. Those are Selection Segues, which are triggered when you select the cell.
This does explain your other issue as well. Because your segue is connected to the accessory, which you remove. So there is no way to actually trigger your segue.
Problem
Lately, when I try to add a seque to my UITableView cell using the storyboard: Xcode is auto-adding an info icon / "Accessory Button" to the cell: I know I can remove it like so: However, there appear to be other issues that might also be symptoms of whatever is causing this behavior, but that's a separate question... My question here is why is Xcode adding it in the first place? It's never done this before when I've added storyboard seques...