在聊天界面(继承RCConversationViewController的ViewController)里,实现下面的方法
- (void)willDisplayConversationTableCell:(RCMessageBaseCell *)cell atIndexPath:(NSIndexPath *)indexPath
{
if ([cell isKindOfClass:[RCMessageCell class]]) {
RCMessageCell *messageCell = (RCMessageCell *)cell;
//messageCell.portraitImageView
UIImageView *portraitImageView= (UIImageView *)messageCell.portraitImageView;
portraitImageView.layer.cornerRadius = 10;
}
}
在方法里判断如果 cell 是 RCMessageCell,就将 cell 强制转换成 RCMessageCell,然后找到 cell 的 portraitImageView 属性,再强制转换为UIImageView,这样就可以设置圆角的半径了。
5.x 开始 IMKit 开源,建议集成 IMKit 源码,参考对应的实现:融云开发者文档