设置融云显示的头像的大小及形状
[self setConversationAvatarStyle:RC_USER_AVATAR_CYCLE];
[self setConversationPortraitSize:CGSizeMake(40, 40)];
设置字体颜色
- (void)willDisplayConversationTableCell:(RCConversationBaseCell *)cell atIndexPath:(NSIndexPath *)indexPath
{
UIImageView *headImage = [cell valueForKeyPath:@"_headerImageView"];
DebugLog(@"frame = %@",NSStringFromCGRect(headImage.frame));
headImage.image = [headImage.image circleImageWithParam:0];
RCConversationCell *RCcell = (RCConversationCell *)cell;
[RCcell.conversationTitle setFont:[UIFont fontWithName:@"STHeiti-Light.ttc" size:15]];
RCcell.messageContentLabel.textColor = [UIColor colorWithRed:153/255.0 green:153/255.0 blue:153/255.0 alpha:1];
[self rcConversationListTableView:self.conversationListTableView cellForRowAtIndexPath:indexPath];
}
网友评论