LoginSignup
13
10

More than 3 years have passed since last update.

[iOS13]DeprecatedになったkeyWindowの取得方法

Last updated at Posted at 2020-11-26

環境

  • Xcode 12.1
  • Swift 5.3

概要

UIApplication のプロパティである KeyWindow
iOS13.0でDeprecatedになっていたので取得方法を修正する必要があります。
Apple公式ドキュメント - keyWindow

(今更ですが)

取得方法

修正前

UIApplication.shared.keyWindow

修正後

UIApplication.shared.windows.first { $0.isKeyWindow }

参照: stack overflow

13
10
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
13
10