Last active
September 20, 2015 18:24
-
-
Save tolpp/89863547fac910c26b84 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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