码迷,mamicode.com
首页 > 其他好文 > 详细

textView富文本点击事件

时间:2016-07-11 16:51:15      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:

NSDictionary * attDic = [NSDictionary dictionaryWithObjectsAndKeys:RGBCOLOR(31, 132, 204),NSForegroundColorAttributeName,[NSNumber numberWithInteger:NSUnderlineStyleSingle],NSUnderlineStyleAttributeName,@“url”,NSLinkAttributeName, nil];

 

如果想要跳转viewController

- (BOOL)textView:(UITextView *)textView shouldInteractWithURL:(NSURL *)URL inRange:(NSRange)characterRange
{
    if ([URL.scheme isEqualToString:@"url"]) {
        // Launch View controller
        return NO;
    }
    return YES;
}

====
label 的富文本好像不能直接添加点击事件

textView富文本点击事件

标签:

原文地址:http://www.cnblogs.com/huoran1120/p/5660509.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!