Created
October 18, 2015 21:31
-
-
Save petrpavlik/77d08cb507e3ac45f76e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// KeyboardFrameDetectorInputView.swift | |
// Chat | |
// | |
// Created by Petr Pavlik on 18/10/15. | |
// Copyright © 2015 Petr Pavlik. All rights reserved. | |
// | |
import UIKit | |
class KeyboardFrameDetectorInputView: UIInputView { | |
var keyboardFrameChangedBlock: ((frame: CGRect) -> Void)? | |
// Has to be strong to prevent KVO crash. | |
private var keyboardView: UIView? | |
deinit { | |
keyboardView?.removeObserver(self, forKeyPath: "center") | |
} | |
override func willMoveToSuperview(newSuperview: UIView?) { | |
if keyboardView != nil { | |
keyboardView!.removeObserver(self, forKeyPath: "center") | |
keyboardView = nil | |
} | |
let keyboardWindow = UIApplication.sharedApplication().windows.filter { (element) -> Bool in | |
element.isKindOfClass(NSClassFromString("UIRemoteKeyboardWindow")!) | |
}.first | |
if let keyboardWindow = keyboardWindow { | |
for subview in keyboardWindow.subviews { | |
for hostView in subview.subviews { | |
if hostView.isMemberOfClass(NSClassFromString("UIInputSetHostView")!) { | |
keyboardView = hostView | |
} | |
} | |
} | |
keyboardView!.addObserver(self, forKeyPath: "center", options: [.New], context: nil) | |
} | |
} | |
override func observeValueForKeyPath(keyPath: String?, ofObject object: AnyObject?, change: [String : AnyObject]?, context: UnsafeMutablePointer<Void>) { | |
if object as? UIView == keyboardView { | |
keyboardFrameChangedBlock?(frame: keyboardView!.frame) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment