slackhq/SlackTextViewController

iOS 12 bottom bar is not hiding

yarodevuci opened this issue · 3 comments

I noticed on iOS 12 bottom bar is not hidden when requested. Also is not clickable either at least. Anyone else noticed that?

same issue.

iOS 12 on iPhone X

Before hide
simulator screen shot - iphone xs - 2018-09-18 at 16 46 36

After call self.setTextInputbarHidden(true, animated: true)
simulator screen shot - iphone xs - 2018-09-18 at 16 46 14

Update:
My issue have been resolved.

DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
    self.setTextInputbarHidden(true, animated: true)
}

@12789 Hi yes, helped for me too but without adding delay for my case. This is so weird..

same issue, the async fix also works for me, upvoted!