iOS开发融云会话页面去掉电话号码邮箱链接的样式和点击事件
Posted 刘建伯
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS开发融云会话页面去掉电话号码邮箱链接的样式和点击事件相关的知识,希望对你有一定的参考价值。
【ios开发】融云会话页面去掉电话号码、邮箱、链接的样式和点击事件
- 添加 RCAttributedDataSource 协议,设置attributeDataSource。
- 重置attributeDictionary。
- 重写点击回调。
// 去掉手机号、邮箱、超链接 高亮+点击事件
- (void)willDisplayMessageCell:(RCMessageBaseCell *)cell atIndexPath:(NSIndexPath *)indexPath {
if ([cell isKindOfClass:[RCTextMessageCell class]]) {
RCTextMessageCell *txtCell = (RCTextMessageCell*)cell;
txtCell.textLabel.attributeDictionary = nil;
txtCell.textLabel.attributeDataSource = self;
}
}
- (NSDictionary *)attributeDictionaryForTextType:(NSTextCheckingTypes)textType {
return nil;
}
/*!
点击Cell中电话号码的回调
@param phoneNumber 点击的电话号码
@param model 消息Cell的数据模型
*/
-(void)didTapPhoneNumberInMessageCell:(NSString *)phoneNumber model:(RCMessageModel *)model {
}
/*!
点击Cell中URL的回调
@param url 点击的URL
@param model 消息Cell的数据模型
*/
- (void)didTapUrlInMessageCell:(NSString *)url model:(RCMessageModel *)model {
}
以上是关于iOS开发融云会话页面去掉电话号码邮箱链接的样式和点击事件的主要内容,如果未能解决你的问题,请参考以下文章