Skip to content

Instantly share code, notes, and snippets.

@glowcap
Last active November 6, 2017 23:17
Show Gist options
  • Select an option

  • Save glowcap/58b2d5f8b426325c92823c48ecaacb3f to your computer and use it in GitHub Desktop.

Select an option

Save glowcap/58b2d5f8b426325c92823c48ecaacb3f to your computer and use it in GitHub Desktop.
iOS11 iPhoneX if
if #available(iOS 11, *) {
// if iOS11 parameters isn't enough
if UIDevice().type == .iPhoneX {
// iPhone X parameters
} else {
// iOS11 parameters
}
} else {
// original parameters
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment