首页 > 其他 > 详细

textView富文本点击事件

时间:2016-07-11 16:50:03      阅读:157      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!