
基础产品
适用各种通信场景,接入灵活

融合场景
专为场景打造,接入成本低

扩展能力
核心能力延展,功能全面

更多服务
一站式服务,满足各种需求
回答:
示例代码:
- (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] }; } }