Skip to content

Instantly share code, notes, and snippets.

@MTattin
Created September 22, 2017 05:10
Show Gist options
  • Save MTattin/7337193398986eb3f9c48261858fa612 to your computer and use it in GitHub Desktop.
Save MTattin/7337193398986eb3f9c48261858fa612 to your computer and use it in GitHub Desktop.
safeAreaInsets.top と status bar のメモ ref: http://qiita.com/MTattin/items/224746049bbd849c49f4
///
/// Safe Area Insets
///
var SAFE: UIEdgeInsets {
get {
if #available(iOS 11.0, *) {
if let insets = AppDelegate?.window?.safeAreaInsets {
return insets
}
}
return UIEdgeInsets.zero
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment