SlackTextViewController
SlackTextViewController copied to clipboard
when Entering text the keyboard pops and everything rises up including navigation bar
in Entering text the keyboard pops and everything rises up including navigation bar how to avoid that?
Also sometimes textfield stays behind the keyboard - usually it happens when I am opening the view controller for the second or more time
thanks
It's working fine, Can you please check are you using any third party keyboard handling library?
What version of the library are you using @gulzatique? Those bugs seem old.
I get this issue too, my viewcontroller has no subview, fully empty and do as instruction. When i debug view hierarchy. I see my UILayoutContainerView has Position Y as -5 (It should be 0). So when the keyboard is toggled on, there is a space between that keyboard and textview ( i think that space's height is equal to 5, because the whole view has been shifted to 5 unit). Is it related to autoCorrection, because I turn it off and make the textview become first responder after the view appear
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
self.textView.autocorrectionType = .no
self.textView.becomeFirstResponder()
}
And just 1 more note: my version is 1.9.5
I'm having exactly the same issue:
It only happened after I switch to another keyboard (eg: Chinese keyboard)
Refering to: #235. Guess is because of iqkeyboardmanager