i have uitableviewcontroller
subclass in storyboard loads it's cells uitableviewcell
defined in xib file (this done custom cell can re-used across deep hierarchy of table view controllers).
i need define segue table view controller next table view controller. control dragging cell of source view controller of destination. since there no prototype cells in source table view controller, there no way connect segue.
do have resort implementing -tableview:didselectrowatindexpath:
in table view controller , triggering manual segue? or there better way?
yes, present new uiviewcontroller
-tableview:didselectrowatindexpath:
. since don't have prototype cell, have nothing link segue with. -presentviewcontroller:animated:
.
Comments
Post a Comment