You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'keyWindow' was deprecated in iOS 13.0: Should not be used for applications that support multiple scenes as it returns a key window across all connected scenes
#155
Open
sundialsoft opened this issue
Jan 28, 2020
· 0 comments
Various deprecated items with keyWindow being the most serious.
There are work arounds: eg
let window = UIApplication.shared.windows.filter {$0.isKeyWindow}.first
gets the same result without the deprecated message.
The text was updated successfully, but these errors were encountered:
Various deprecated items with keyWindow being the most serious.
There are work arounds: eg
let window = UIApplication.shared.windows.filter {$0.isKeyWindow}.first
gets the same result without the deprecated message.
The text was updated successfully, but these errors were encountered: