I’m using storyboards and I have a UITableView. I have a segue setup that pushes from my table to the detail VC. But which method should I use to handle this? I’ll have to pass a couple objects to the detail view. But do I use didSelectRowAtIndex or -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender?
I’m using storyboards and I have a UITableView. I have a segue setup that
Share
If you use
prepareForSegue:sender:then you won’t have as much to change if you later decide to trigger the segue from some control outside the table view.The
prepareForSegue:sender:message is sent to the current view controller, so I’d suggest something like this:In Swift: