How to hide Toolbar in IQKeyboardManager iOS Swift 3

后端 未结 10 2185
南笙
南笙 2021-01-12 09:35

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

10条回答
  •  我在风中等你
    2021-01-12 09:57

    You can enable or disable the toolbar in didFinishLaunchingWithOptions of AppDelegate:

    IQKeyboardManager.shared.enable = true
    
    IQKeyboardManager.shared.enableAutoToolbar = false
    

    For more info see Properties and functions usage

提交回复
热议问题