Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 10th, 2012  |  syntax: None  |  size: 0.25 KB  |  hits: 7  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Can I add a timer to my view to segue to next view?
  2. - (void)goToNextView {
  3.     [self performSegueWithIdentifier:@"segueToNextView" sender:self];
  4. }
  5.  
  6. - (void)viewDidLoad {
  7.     [self performSelector:@selector(goToNextView) withObject:nil afterDelay:5];
  8. }