viewWillTransitionToSize の中で safeAreaInsets を取得する方法
viewWillTransition(to size: with coordinator:)
メソッドのiPhoneX対応を試みています。 回転後のsefeAreaInsetsの値の取得をしたいのですが、方法がわかりません。宜しくお願いします。
override func viewWillTransition(to size: CGSize,
with coordinator: UIViewControllerTransitionCoordinator) {
super.viewWillTransition(to: size, with: coordinator)
if #available(iOS 11.0, *) {
if let window = UIApplication.shared.keyWindow {
let insets = window.safeAreaInsets
contentFrame = CGRect(x:insets.left, y:insets.top,
width:size.width - insets.left - insets.right,
height:size.height - insets.top - insets.bottom)
}
} else {
contentFrame = CGRect(x:0,y:0,width:size.width, height:size.height)
}
self.updateViews()
}