Reputation: 16338
So almost 70 apps later I am trying out storyboards for the first time...
I think I got the basic flow working, having a nav controller stack with segues pushing or modally displaying the next scenes, and unwinding from those. All of this without any code, except for the unwinding.
How would I make a splash screen (after Default*.png) that automatically transitions to the next scene after 5 seconds? (preferrably as much done in Interface Builder as possible)
Upvotes: 1
Views: 139
Reputation: 6692
NSTimer
to call the following method after 5 seconds:-(void)performSegueWithIdentifier:(NSString *)identifier sender:(id)sender
Upvotes: 1