Popularity
0.3
Stable
Activity
0.0
Stable
1
1
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. Neither need to write any code nor any setup required and much more. -
TPKeyboardAvoiding
A drop-in universal solution for moving text fields out of the way of the keyboard in iOS -
IHKeyboardAvoiding
IHKeyboardAvoiding is an elegant solution for keeping any UIView visible when the keyboard is being shown - no UIScrollView required! -
MMNumberKeyboard
A simple keyboard to use with numbers and, optionally, a decimal point. -
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
[iOS] Add customized buttons and toolbars to your UITextInputs. -
Toolbar
Awesome autolayout Toolbar. Toolbar is a library for iOS. You can easily create chat InputBar. -
KeyboardMan
KeyboardMan helps you to 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. So called keyboard avoidance. -
KeyboardHideManager
Codeless manager to hide keyboard by tapping on views for iOS written in Swift -
RSKKeyboardAnimationObserver
Showing / dismissing keyboard animation in simple UIViewController category.
Appwrite - The open-source backend cloud platform
The open-source backend cloud platform for developing Web, Mobile, and Flutter applications. You can set up your backend faster with real-time APIs for authentication, databases, file storage, cloud functions, and much more!
Promo
appwrite.io
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
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 !!