在聊天页面子类 viewDidLoad 中写下面代码:
//1. 设置conversationMessageCollectionView的背景色为透明
self.conversationMessageCollectionView.backgroundColor = [UIColor clearColor];
//2. 设置self.view.backgroundColor用自己的背景图片
self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@""]];
imageNamed填图片的名字即可。