Skip to content

Instantly share code, notes, and snippets.

@tolpp
Last active September 20, 2015 18:24
Show Gist options
  • Save tolpp/89863547fac910c26b84 to your computer and use it in GitHub Desktop.
Save tolpp/89863547fac910c26b84 to your computer and use it in GitHub Desktop.
let sb = UIStoryboard(name: "StoryBoardNameThatContainsCustomViewController", bundle: nil)
customVc = sb.instantiateViewControllerWithIdentifier("CustomViewControllerID") as! CustomViewController
//Animasyonlar için özelleştirilmiş geçişler kullanılmak isteniyorsa :
//customVc.transitioningDelegate = self
self.presentViewController(customVc, animated: true, completion: nil)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment