UITextView指定文字添加点击事件

指定文字文字添加点击事件,其实就是超链接。
代码如下:

step1:
NSMutableAttributedString * atrStr = [[NSMutableAttributedString alloc] initWithString:@"一二三四,一二三四像首歌,绿色军营."];
[atrStr addAttribute:NSForegroundColorAttributeName
                               value:[UIColor whiteColor]
                               range:NSMakeRange(0, atrStr.length - 5)];
[atrStr addAttribute:NSBaselineOffsetAttributeName
                               value:[NSNumber numberWithFloat:-4]
                               range:NSMakeRange(0, atrStr.length)];
[atrStr addAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
//                              [NSNumber numberWithInt:1],NSUnderlineStyleAttributeName,   // 下划线
                                [NSNumber numberWithFloat:-5],NSBaselineOffsetAttributeName, // 基线偏移,负值:向下偏移
                                [UIFont boldSystemFontOfSize:13.0], NSFontAttributeName,
                                [NSURL URLWithString:@"www.baidu.com"], NSLinkAttributeName,
                                nil] range:NSMakeRange(atrStr.length - 5, 4)];
textV.linkTextAttributes = @{NSForegroundColorAttributeName : [UIColor blackColor]};
textV.attributedText = atrStr;
textV.textAlignment = NSTextAlignmentCenter;
textV.delegate = self;
textV.editable = NO;

设置基线偏移 是因为textview文字靠上,所以通过偏移使其水平居中。
哦对了,textV就是一个普通的UITextView创建及设置frame就不多说了。

Step2:

添加超链接之后的点击事件:

- (BOOL)textView:(UITextView *)textView shouldInteractWithURL:(NSURL *)URL inRange:(NSRange)characterRange {
    // 这里写想要进行的操作 譬如:push到某个页面...
    return YES;
}

补充一些其他的属性:

// 这些属性对应的数据类型请参考官方文档
NSObliquenessAttributeName  字体倾斜程度
NSBackgroundColorAttributeName   文字的背景色,不是文字的颜色
NSForegroundColorAttributeName  文字颜色
NSKernAttributeName  文字间距
NSStrikethroughStyleAttributeName  删除线

你可能感兴趣的:(UITextView指定文字添加点击事件)