Я хочу реализовать анимированную вставку, как в viber chat при добавлении нового сообщения, Пример видео
Мой код делает что-то похожее, но не совсем похоже, я хочу сделать точную копию анимации, которая есть у viber
override open func initialLayoutAttributesForAppearingItem(at itemIndexPath: IndexPath) -> UICollectionViewLayoutAttributes? {
let attributes = super.initialLayoutAttributesForAppearingItem(at: itemIndexPath)
attributes?.alpha = 0.0
attributes?.transform = CGAffineTransform(translationX: 0, y: 200)
return attributes
}
и вставка:
messageList.append(message)
messagesCollectionView.insertSections([messageList.count - 1])
messagesCollectionView.scrollToBottom()