You will need to do this in code. It is as simple as:
- (void)goToNextView {
[self performSegueWithIdentifier:@"segueToNextView" sender:self];
}
- (void)viewDidLoad {
[self performSelector:@selector(goToNextView) withObject:nil afterDelay:5];
}
Now it segueToNextViewwill happen 5 seconds after the controller boots up.
source
share