Created
January 17, 2016 02:40
-
-
Save tdtsh/8a2ea523f228a6108d73 to your computer and use it in GitHub Desktop.
Swift2 NavigationController で画面遷移
This file contains 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
class MasterViewController: UITableViewController { | |
... | |
func doCamera(sender: AnyObject) { | |
let cameraViewController = CameraViewController() | |
self.navigationController?.pushViewController(cameraViewController, animated: true) | |
} | |
} | |
</code> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment