Popularity
0.2
Stable
Activity
0.0
Stable
1
0
0
Programming language: Swift
License: MIT License
Latest version: v1.2.1
DPKeyboardManager alternatives and similar libraries
Based on the "Keyboard" category.
Alternatively, view DPKeyboardManager alternatives based on common mentions on social networks and blogs.
-
IQKeyboardManager
Codeless drop-in universal library allows to prevent issues of keyboard sliding up and cover UITextField/UITextView. -
TPKeyboardAvoiding
A drop-in universal solution for moving text fields out of the way of the keyboard in iOS -
IHKeyboardAvoiding
A drop-in universal solution for keeping any UIView visible when the keyboard is being shown -
MMNumberKeyboard
A simple keyboard to use with numbers and, optionally, a decimal point. -
Typist
Small, drop-in Swift UIKit keyboard manager for iOS apps-helps manage keyboard's screen presence and behavior without notification center. -
NgKeyboardTracker
Objective-C library for tracking keyboard in iOS apps. -
YYKeyboardManager
iOS utility class allows you to access keyboard view and track keyboard animation. -
RFKeyboardToolbar
This is a flexible UIView and UIButton subclass to add customized buttons and toolbars to your UITextFields/UITextViews. -
KeyboardMan
KeyboardMan helps you make keyboard animation. -
Ribbon
A simple cross-platform toolbar/custom input accessory view library for iOS & macOS. -
KeyboardObserver
For less complicated keyboard event handling. -
AutoKeyboardScrollView
AutoKeyboardScrollView is an UIScrollView subclass which makes showing and dismissing keyboard for UITextFields much easier -
KeyboardHideManager
Codeless manager to hide keyboard by tapping on views for iOS written in Swift -
RSKKeyboardAnimationObserver
Showing / dismissing keyboard animation in simple UIViewController category.
Scout APM - Leading-edge performance monitoring starting at $39/month
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of DPKeyboardManager or a related project?
README
DPKeyboardManager
Auto slide the view when keyboard appears
HOW TO USE :
import UIKit
class DPBaseViewController: UIViewController {
let keyboardManager = DPKeyboardManager()
override func viewDidLoad() {
super.viewDidLoad()
keyboardManager.loadKeyboardEvents(self)
}
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
keyboardManager.enableKeybaordEvents()
}
override func viewWillDisappear(_ animated: Bool) {
super.viewWillDisappear(animated)
keyboardManager.disableKeyboardEvents()
}
override var shouldAutomaticallyForwardAppearanceMethods: Bool {
return !keyboardManager.isEmbeddedViewController
}
}
that's all !!