Last active
June 6, 2017 13:31
-
-
Save gracietti/1beb359a4cab56aee9e5af1106a50f4f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import Foundation | |
import UIKit | |
class KeyboardController: NSObject { | |
var viewController: UIViewController | |
var constraint: NSLayoutConstraint | |
var isKeyboardHidden: Bool { | |
return constraint.constant == 0 | |
} | |
// MARK: Life Cycle | |
init(viewController: UIViewController, constraint: NSLayoutConstraint) { | |
self.viewController = viewController | |
self.constraint = constraint | |
super.init() | |
self.setupKeyboardObservers() | |
} | |
// MARK: Setup | |
private func setupKeyboardObservers() { | |
self.setupKeyboardWillChangeObserver() | |
self.setupDismissKeyboardTapGestureRecognizer() | |
} | |
private func setupKeyboardWillChangeObserver() { | |
NotificationCenter.default.addObserver(self, selector: #selector(keyboardWillChange(_:)), name: .UIKeyboardWillChangeFrame, object: nil) | |
} | |
private func setupDismissKeyboardTapGestureRecognizer() { | |
let tap = UITapGestureRecognizer(target: self, action: #selector(dismissKeyboard)) | |
tap.delegate = self | |
viewController.view.addGestureRecognizer(tap) | |
} | |
// MARK: Private | |
func keyboardWillChange(_ notification: Notification) { | |
guard let info = notification.userInfo, | |
let keyboardFrameValue = info[UIKeyboardFrameEndUserInfoKey] as? NSValue else { return } | |
let keyboardFrame: CGRect = keyboardFrameValue.cgRectValue | |
constraint.constant = UIScreen.main.bounds.size.height - keyboardFrame.origin.y | |
if let duration = info[UIKeyboardAnimationDurationUserInfoKey] as? TimeInterval { | |
UIView.animate(withDuration: duration, animations: { | |
self.viewController.view.layoutIfNeeded() | |
}) | |
} else { | |
self.viewController.view.layoutIfNeeded() | |
} | |
} | |
func dismissKeyboard() { | |
viewController.view.endEditing(true) | |
} | |
} | |
extension KeyboardController: UIGestureRecognizerDelegate { | |
func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool { | |
return !isKeyboardHidden | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment