示例代码:
-(void)willDisplayMessageCell:(RCMessageBaseCell *)cell atIndexPath:(NSIndexPath *)indexPath {
if([cell isKindOfClass:[RCTextMessageCell class]]){
RCTextMessageCell *txtCell = (RCTextMessageCell *)cell;
txtCell.textLabel.attributeDictionary =
@{
@(NSTextCheckingTypeLink) : @{NSForegroundColorAttributeName : [UIColor redColor]},
@(NSTextCheckingTypePhoneNumber) : @{NSForegroundColorAttributeName : [UIColor redColor]}
};
txtCell.textLabel.highlightedAttributeDictionary =
@{
@(NSTextCheckingTypeLink) : @{NSForegroundColorAttributeName : [UIColor redColor]},
@(NSTextCheckingTypePhoneNumber) : @{NSForegroundColorAttributeName : [UIColor redColor]
};
}
}
详情查看:https://www.rongcloud.cn/?utm_source=SEO&utm_term=bokeyuan