Skip to content

Instantly share code, notes, and snippets.

@AkdM
Created October 27, 2017 09:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AkdM/aad6c178f43f28230bf65de10113eab5 to your computer and use it in GitHub Desktop.
Save AkdM/aad6c178f43f28230bf65de10113eab5 to your computer and use it in GitHub Desktop.
Detecting iPhone X
if #available(iOS 11.0, *) {
if (UIApplication.shared.keyWindow?.safeAreaInsets != UIEdgeInsets.zero) {
print("I am an iPhone X")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment