SlackTextViewController icon indicating copy to clipboard operation
SlackTextViewController copied to clipboard

when Entering text the keyboard pops and everything rises up including navigation bar

Open gulzatique opened this issue 9 years ago • 5 comments

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

gulzatique avatar Nov 15 '16 05:11 gulzatique

It's working fine, Can you please check are you using any third party keyboard handling library?

podilivinay avatar Dec 06 '16 17:12 podilivinay

What version of the library are you using @gulzatique? Those bugs seem old.

dzenbot avatar Mar 01 '17 06:03 dzenbot

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()
}

trmquang avatar Mar 03 '17 11:03 trmquang

And just 1 more note: my version is 1.9.5

trmquang avatar Mar 06 '17 03:03 trmquang

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

yaodong-li avatar Aug 16 '17 16:08 yaodong-li