最近有个项目需要做一个可以对textView内容进行交互的功能,因此做了一个类似微博展示Emotion、@somebody、#话题#以及链接的Demo。
一、工具
1、RegexKitLite:github.com/samdeane/RegexKitLite
正则表达,使用起来是非常方便,由于是MAC模式,在使用的时候,需要进行以下操作:
使用 -fno-objc-arc 让RegexKitLite支持ARC
2、导入libicucore.tbd动态库
2、MJExtension: https://github.com/CoderMJLee/MJExtension
字典和模型之间互相转换的超轻量级框架。
二、Demo结构
通过创建自定义的statusTextView展示带有属性的特殊字段内容:链接、Emotion、话题以及@somebody等等。
自定义TextView(statusTextView)
model
* specialPart
* status
* TZTextPart
tool
- TZEmotionTool
- TZEmotion
三、代码解读
1、首先创建要展示的内容(截取一段微博正文):
`@"@StephenCurry “I'm Back”!https://bbs.hupu.com (使用#秒拍#录制,免流量看热门短视频!) #库里经典比# 去年季后赛次轮,伤愈复出的库里首战面对开拓者就拿下40分9篮板8助攻,加时赛疯砍17分,率队逆转获胜晋级西决。#StreeBall# [吃元宵][吃元宵][吃元宵]";`
2、实例化展示内容
在TZStatus头文件声明属性
/** 正文内容 */
@property (copy, nonatomic) NSString *contentText;
/** 带属性的微博信息内容 */
@property (strong, nonatomic) NSAttributedString *attributedText;
在TZTextPart头文件声明属性
/** 文字段内容 */
@property (strong, nonatomic) NSString *partText;
/** 文字段范围 */
@property (assign, nonatomic) NSRange range;
/** 是否是特殊文字 */
@property (assign, nonatomic, getter=isSpecial) BOOL special;
/** 是否是表情文字 */
@property (assign, nonatomic, getter=isEmotion) BOOL emotion;
在TZSpecialPart头文件声明属性
/** 特殊段内容 */
@property (strong, nonatomic) NSString *specialText;
/** 特殊段范围 */
@property (assign, nonatomic) NSRange specialRange;
/** 特殊文字的矩形框 数组 */
@property (strong, nonatomic) NSArray *rects;
通过正则表达将NSString中的 “表情”、“@somebody”、“#话题#”、“链接”、“普通字段” 区分开,并拼接成NSAttributedString:
- (NSAttributedString *)attributedTextWithText:(NSString *)contentText{
// 利用contentText生成attributedText
NSMutableAttributedString *attributedText = [[NSMutableAttributedString alloc] init];
// 1.RegexKitLite正则表达方法
// 表情的规则
NSString *emotionPattern = @"\\[[0-9a-zA-Z\\u4e00-\\u9fa5]+\\]";
// @的规则
NSString *atPattern = @"@[0-9a-zA-Z\\u4e00-\\u9fa5_-]+";
// #话题#的规则
NSString *topicPattern = @"#[0-9a-zA-Z\\u4e00-\\u9fa5]+#";
// url链接的规则
NSString *urlPattern = @"\\b(([\\w-]+://?|www[.])[^\\s()<>]+(?:\\([\\w\\d]+\\)|([^[:punct:]\\s]|/)))";
NSString *pattern = [NSString stringWithFormat:@"%@|%@|%@|%@", emotionPattern, atPattern, topicPattern, urlPattern];
// 各种文字段的内容
NSMutableArray *parts = [NSMutableArray array];
// 2.遍历所有内容 选出特殊字段内容
[contentText enumerateStringsMatchedByRegex:pattern usingBlock:^(NSInteger captureCount, NSString *const __unsafe_unretained *capturedStrings, const NSRange *capturedRanges, volatile BOOL *const stop) {
// 没有匹配的字段
if ((*capturedRanges).length == 0) return;
// 收集特殊字段
TZTextPart *part = [[TZTextPart alloc] init];
part.partText = *capturedStrings;
part.range = *capturedRanges;
part.special = YES;
part.emotion = [part.partText hasPrefix:@"["] && [part.partText hasSuffix:@"]"];
[parts addObject:part];
}];
// 3.遍历所有内容 选出普通字段内容
[contentText enumerateStringsSeparatedByRegex:pattern usingBlock:^(NSInteger captureCount, NSString *const __unsafe_unretained *capturedStrings, const NSRange *capturedRanges, volatile BOOL *const stop) {
// 没有匹配的字段
if ((*capturedRanges).length == 0) return;
// 收集普通字段
TZTextPart *part = [[TZTextPart alloc] init];
part.partText = *capturedStrings;
part.range = *capturedRanges;
[parts addObject:part];
}];
// 4.将获得的所有字段按 range 排序
[parts sortUsingComparator:^NSComparisonResult(TZTextPart *_Nonnull part1, TZTextPart *_Nonnull part2) {//升序排列
if (part1.range.location > part2.range.location) {
return NSOrderedDescending;
}
return NSOrderedAscending;
}];
UIFont *font = [UIFont systemFontOfSize:15.0];
// 储存特殊属性数组
NSMutableArray *specials = [NSMutableArray array];
// 5.分别处理各文字段 设置内容的属性
for (TZTextPart *part in parts) {
NSAttributedString *substr = nil;
if (part.isEmotion) {//表情
NSTextAttachment *attch = [[NSTextAttachment alloc] init];
NSString *name = [TZEmotionTool emotionWithChs:part.partText].png;
if (name) { // 能找到对应的图片
attch.image = [UIImage imageNamed:name];
attch.bounds = CGRectMake(0, -3, font.lineHeight, font.lineHeight);
substr = [NSAttributedString attributedStringWithAttachment:attch];
} else { // 表情图片不存在
substr = [[NSAttributedString alloc] initWithString:part.partText];
}
}else if (part.special){//特殊文字
substr = [[NSAttributedString alloc] initWithString:part.partText attributes:@{
NSForegroundColorAttributeName:[UIColor blueColor]
}];
// 将特殊文字段的 内容 和 位置 保存起来
TZSpecialPart *specialPart = [[TZSpecialPart alloc] init];
specialPart.specialText = part.partText;
NSUInteger loc = part.range.location;
NSUInteger len = part.range.length;
specialPart.specialRange = NSMakeRange(loc, len);
[specials addObject:specialPart];
}else{//非特殊文字
substr = [[NSAttributedString alloc] initWithString:part.partText];
}
[attributedText appendAttributedString:substr];
}
[attributedText addAttribute:NSFontAttributeName value:font range:NSMakeRange(0, attributedText.length)];
// 把specials 添加到 0,1 的位置上(第一个字符的属性上)
[attributedText addAttribute:@"specials" value:specials range:NSMakeRange(0, 1)];
return attributedText;
}
3、在收集到特殊字段数组后,在自定义的textView中显示出来,并创建相应字段的点击事件。
-(BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event方法可以判断是否响应textView内的touch时间。
/**
告诉系统:触摸点point是否在这个UI控件身上
*/
-(BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event{
[self setupSpecialRects];
// 找出被触摸的特殊字符串
TZSpecialPart *specialPart = [self touchingSpecialWithPoint:point];
if (specialPart) {//触摸到特殊字符串时才响应touch事件
return YES;
}else{
return NO;
}
}
/**
* 找出被触摸的特殊字符串
*/
-(TZSpecialPart *)touchingSpecialWithPoint:(CGPoint)point
{
NSArray *specials = [self.attributedText attribute:@"specials" atIndex:0 effectiveRange:nil];
for (TZSpecialPart *specialPart in specials){
for (NSValue *rectValue in specialPart.rects) {
// 如果手指位置在 特定文字 位置
if(CGRectContainsPoint(rectValue.CGRectValue,point)){
return specialPart;
}
}
}
return nil;
}
点击时寻找特殊字符串,并显示出来
-(void)touchesBegan:(NSSet*)touches withEvent:(UIEvent *)event{
// 1.获取触摸位置
UITouch *touch = [touches anyObject];
CGPoint point = [touch locationInView:self];
// 2.初始化特殊文字段的矩形框
[self setupSpecialRects];
// 3.根据触摸点获得被触摸的特殊字符串
TZSpecialPart *specialPart = [self touchingSpecialWithPoint:point];
// 4.在被触摸的特殊字符串后面显示一段高亮的背景
for (NSValue *rectValue in specialPart.rects) {
// 添加遮盖
UIView *cover = [[UIView alloc] init];
cover.backgroundColor = [UIColor greenColor];
cover.frame = rectValue.CGRectValue;
cover.tag = TZCoverTag;
[self insertSubview:cover atIndex:0];
}
}
网友评论