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
This is the way to do it for an individual view controller:
class YourViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
IQKeyboardManager.shared.disabledToolbarClasses = [YourViewController.self]
}
}
And to prevent the vc from rising when IQKeyboardManager raises it when the keyboard is present:
IQKeyboardManager.shared.disabledDistanceHandlingClasses.append(YourViewController.self)