聊天页面输入框上的白线如何去掉?

如果聊天页面需要设置 self.view.backgroundColor 来保持聊天窗口和输入框整体背景图片或颜色一致可通过如下方式去掉白线:

self.view.backgroundColor = [UIColor blackColor];
self.conversationMessageCollectionView.backgroundColor = [UIColor clearColor];
self.chatSessionInputBarControl.layer.contents = nil;

如果需要分别设置聊天窗口和输入框背景颜色通过如下方式去掉白线:

self.conversationMessageCollectionView.backgroundColor = [UIColor blackColor];
self.chatSessionInputBarControl.layer.backgroundColor = [UIColor blackColor].CGColor;
self.chatSessionInputBarControl.layer.contents = nil;