LoginSignup
8
4

More than 1 year has passed since last update.

【Swift】UIScreen.mainがdeprecatedになってからの画面サイズ取得方法

Posted at

iOS16からUIScreen.mainがdeprecated(非推奨)になった

これまでの画面サイズ取得方法
let screenSize = UIScreen.main.bounds

スクリーンショット 2023-04-16 3.40.27.png

今後の画面サイズ取得方法

guard let window = UIApplication.shared.connectedScenes.first as? UIWindowScene else { return }
let screenSize = window.screen.bounds

参考

8
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
4