You can configure the IQKeyboardManager below the properties.
I assume that you included the IQKeyboardManager in the didFinishLaunch of the application delegate, like this
IQKeyboardManager.sharedManager().enable = true
shouldShowTextFieldPlaceholder to false==> If you want to hide the section of the notes panel
shouldHidePreviousNext to false == > ..
didFinishLaunch AppDelegate,
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
IQKeyboardManager.sharedManager().enable = true
IQKeyboardManager.sharedManager().enableAutoToolbar = false
IQKeyboardManager.sharedManager().shouldShowTextFieldPlaceholder = false
IQKeyboardManager.sharedManager().shouldHidePreviousNext = false
return true
}