Should the Xcode Storyboard support segues from a UITableView with dynamic prototype cells?

I can't get this to work. If I remove the UITableView wizard to use Static cells, I can get segues to work, so when you click on a row in the main, it automatically pushes the child controller. But with the cells of the "dynamic prototype" I click on one of the cells and nothing happens ...

Should I programmatically push the child controller in a method prepareForSegueor something else? In this case, I’m not sure what the benefit of segue is here in the old way, just use

+5
source share
3 answers

prepareForSugue: , [table indexPathForSelectedRow prepareForSugue loadView.

+1

, Table View Cell.

0

All Articles