设置融云显示的头像的大小及形状

2016-10-20  本文已影响367人  滴答大

设置融云显示的头像的大小及形状

[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];

}

上一篇 下一篇

猜你喜欢

热点阅读