我了解他们如何能够为他们的应用程序提供背景知识。这与CollectionViewController无关。 查看我的帖子:Having trouble with interactive keyboard always bouncing- it is also bouncing the background of the collectionView
此外,每当您以文本视图打开键盘时,最后一个文本(如100%)都会跟随键盘。现在,我有了键盘和文本视图,但是聊天并没有立即进行。这是我的代码,但是要花几秒钟的时间:
func setupKeyboardObservers(){
NotificationCenter.default.addObserver(self, selector: #selector(handleKeyboardDidShow), name: UIResponder.keyboardDidShowNotification, object: nil)
}
override func viewDidDisappear(_ animated: Bool) {
super.viewDidDisappear(animated)
NotificationCenter.default.removeObserver(self)
}
@objc func handleKeyboardDidShow(){
print("did show LOL")
if chatMessages.count > 0{
let indexPath = NSIndexPath(item: chatMessages.count-1, section: 0)
collectionView?.scrollToItem(at: indexPath as IndexPath, at: .top, animated: true)
}
}
我似乎无法像这样使我的键盘美观流畅,这非常令人沮丧。聊天室的背景图像也非常烦人。我开始弹跳,但背景仍然有些颤抖(虽然不那么频繁)。
谢谢!