Skip to content

Instantly share code, notes, and snippets.

@prodeveloper0
Last active December 8, 2016 17:35
Show Gist options
  • Select an option

  • Save prodeveloper0/514e8a0e37f661a047915176b986ff1e to your computer and use it in GitHub Desktop.

Select an option

Save prodeveloper0/514e8a0e37f661a047915176b986ff1e to your computer and use it in GitHub Desktop.
/* 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