As stated above, you need to use didSelectRowAtIndexPath
unless you configure a segue in your storyboard to a new UIViewController
. This allows you to use the prepareForSegue
function instead of the programmatic call of performSegueWithIdentifier
.
Hope that helps clear it up!