-1

I'm using MessageKit Chat Library. I removed the Avatar View from message cell. But the space between 2 message cells is too much. I want to reduce space between 2 message cell. how can I do that ?


Edit:

I  marked the spaces

chirag90
  • 2,211
  • 1
  • 22
  • 37

1 Answers1

0

I solved problem with cell spacing on cell in CollectionView

    if let layout = messagesCollectionView.collectionViewLayout as? MessagesCollectionViewFlowLayout {
        layout.textMessageSizeCalculator.outgoingAvatarSize = .zero
        layout.textMessageSizeCalculator.incomingAvatarSize = .zero
        layout.sectionInset = UIEdgeInsets(top: -10, left: 0, bottom: -5, right: 0)
        layout.minimumInteritemSpacing = 0
        layout.minimumLineSpacing = 0
    }
  • Where do you call this function? What if we need to have custom section insets for each cell? I tried to override messagePadding function but it doesn't seem to work! @redwheelbarrow – Master AgentX Jun 01 '20 at 20:37