I\'m using the IQKeyboardManger library to scroll text fields when started typing using the keyboard, but I don\'t want to display the default toolbar from their library. Be
Swift 5, IQKeyboardManager (6.3.0)
You can call this setup function from your didFinishLaunchingWithOptions
in the app delegate:
private func setupKeyboardManager() {
IQKeyboardManager.shared().isEnabled = true
IQKeyboardManager.shared().isEnableAutoToolbar = false
IQKeyboardManager.shared().shouldShowToolbarPlaceholder = false
IQKeyboardManager.shared().previousNextDisplayMode = .alwaysHide
}
Feel free to add any other customisation you need in this method, such as shouldResignOnTouchOutside
or similar.