Skip to content

Instantly share code, notes, and snippets.

@hungtruong
Created December 3, 2017 17:23
Show Gist options
  • Save hungtruong/1eeea58893ea005a92d49d65e7b04270 to your computer and use it in GitHub Desktop.
Save hungtruong/1eeea58893ea005a92d49d65e7b04270 to your computer and use it in GitHub Desktop.
// Hides the home indicator on the inactive and passcode entry view
override func prefersHomeIndicatorAutoHidden() -> Bool {
switch passcodeViewMode {
case .inactive, .passcodeEntry:
return true
default:
return false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment