So in iOS 7 I always got the Keyboard Window like this:
- (UIView *)keyboardView { UIWindow* tempWindow; //Because we cant get access to the UIKeybo
On iOS 13, we can get keyboard window like this:
let windows = UIApplication.shared.windows if let keyboardWindow = windows.first(where: { NSStringFromClass($0.classForCoder) == "UIRemoteKeyboardWindow" }) { return }