[Solved] Different views for each table view cell


I think it creates or pointing out different controller segue on which you’re moving too.
you should try following method:

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.
}

If you want to check than just you can check by:

if ([segue.identifier isEqualToString:@"identifer"]) {

}

solved Different views for each table view cell