Last active
December 8, 2016 17:35
-
-
Save prodeveloper0/514e8a0e37f661a047915176b986ff1e 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
| /* Swift 3.0 UINavigationController 기기 방향 고정 */ | |
| extension UINavigationController { | |
| override open var shouldAutorotate: Bool { | |
| return false | |
| } | |
| override open var supportedInterfaceOrientations : UIInterfaceOrientationMask { | |
| return .portrait | |
| } | |
| } | |
| /* Swift 3.0 현재 앱의 AppDelegate 가져오기 */ | |
| let appDelegate = UIApplication.shared.delegate as! AppDelegate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment