Guest User

Untitled

a guest
Jan 15th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. self.performSegueWithIdentifier("showApp", sender: self)
  2.  
  3. class SplashViewController: UIViewController {
  4.  
  5. override func viewDidLoad() {
  6. super.viewDidLoad()
  7.  
  8. sleep(2)
  9.  
  10. // THIS DOES NOTHING:
  11. self.performSegueWithIdentifier("showApp", sender: self)
  12.  
  13. // THIS AS SUGGESTED ALSO DOES NOTHING:
  14. var otherViewController:UIViewController = self.storyboard.instantiateViewControllerWithIdentifier("test") as UIViewController
  15. self.presentViewController(otherViewController, animated: true, completion: nil)
  16. }
  17. }
Add Comment
Please, Sign In to add comment