1

enter image description here

In my JSQMessagesViewController, when I load incomming message bubbles, So In that blue bubbles beginning getting space how can remove that space whether anything need to disable??

vara
  • 816
  • 3
  • 12
  • 29

2 Answers2

2

The following line will remove the blank space from beside the bubbles:

self.collectionView.collectionViewLayout.incomingAvatarViewSize = CGSize.zero
Matt
  • 688
  • 5
  • 15
1

This White space is for Avatar container If you want to delet this I think you can try to modify in JSQMessagesCollectionViewCellIncoming.xib and JSQMessagesCollectionViewCellOutgoing.xib files by deleteing the Avatar container View and move the Bubble container to right.

Before :

enter image description here

After :

enter image description here

You can Find those files at enter image description here

Ayman Karram
  • 116
  • 4