I'm trying to segue in code. the prepareForSegue function runs and shows correct destination view controller, but nothing happens. Any idéas on what I'm missing or what I have misconfigured?
View controller possible path:
A ->B (sgueResultat)
or
A->C (sgueStopSplash)
Code that chooses the segue:
if (proversion)
[self performSegueWithIdentifier:@"sgueResultat" sender:self];
}
else {
[self performSegueWithIdentifier:@"sgueStopSplash" sender:self];
}
`
The prepareForSegue that I can confirm is running by NSLog:
- (void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
NSLog(@"Source Controller = %@", [segue sourceViewController]);
NSLog(@"Destination Controller = %@", [segue destinationViewController]);
NSLog(@"Segue Identifier = %@", [segue identifier]);
Nslog output:
2012-06-26 22:22:26.002 ClosetV2[2333:fb03] Source Controller = <ABStartViewController: 0xeb12270>
2012-06-26 22:22:26.002 ClosetV2[2333:fb03] Destination Controller = <SplashAfterStopViewController: 0x6b2c9e0>
2012-06-26 22:22:26.003 ClosetV2[2333:fb03] Segue Identifier = sgueStopSplash
2012-06-26 22:22:26.003 ClosetV2[2333:fb03] sgueStopSplash
Regards Andreas
prepareForSegue:sender:that you included. – David Rönnqvist Jun 26 '12 at 20:56initWithCoder:,awakeFromNib,viewDidLoad:, orviewWillAppear:methods ofSplashAfterStopViewController? – Phillip Mills Jun 26 '12 at 21:04