To disable IQKeyboardManager in a viewcontroller in Swift, you apparently need to get a reference to the instance and then disable it. However, I cannot figure out a way to reference it. I originally import the library in the appDelegate which is written in Objective-C as
import IQKeyboardManagerSwift
Give me the error:
No Such Module IQKeyboardManagerSwift
If I merely try to put the lines below in viewDid Load:
IQKeyboardManager.shared().isEnabled = false
IQKeyboardManager.shared().isEnableAutoToolbar = false
Then I get error
IQKeyboardManager not found.
How do you disable IQKeyboardManager for a specific view controller in Swift?