iOS开发 富文本文字关联点击事件

2020-01-09  本文已影响0人  青子衿S

有时我们需要点击富文本一些关键字进行跳转,其实只需要UITextView一个代理方法就可以了,so easy!

//内容文本
    NSString *content = @"尊敬的用户: 我们对《人隐私政策》进行了更新,更新后的隐私政策将于XXXX年XX月XX日正式生效。
        本次更新进步明确了 我们将如何收集、使用、共享和存储您的个人信息,具体的信息类型和使用方式:
        以更全面、清晰的方式告知您如何管理自己的个人信息及行使您的权利:
        增加了多项保护个人信息的制度和举措,如安全事件通知、未成年人保护等。请您务必认真阅读全文。";
    UITextView *contentTextView = [[UITextView alloc] initWithFrame:CGRectMake(30, 100, 345, 200)];
    contentTextView.attributedText = [self getContentLabelAttributedText:content];
    contentTextView.textAlignment = NSTextAlignmentLeft;
    contentTextView.delegate = self;
    contentTextView.editable = NO;        //必须禁止输入,否则点击将弹出输入键盘
    contentTextView.scrollEnabled = NO;
    [self.view addSubview:contentTextView];

#pragma mark - UITextViewDelegate ----核心代码
- (BOOL)textView:(UITextView *)textView shouldInteractWithURL:(NSURL *)URL inRange:(NSRange)characterRange {
    if ([[URL scheme] isEqualToString:@"privacyPolicy"]) {
        //《隐私政策》
        NSLog(@"点击了《隐私政策》");
        return NO;
    }else if ([[URL scheme] isEqualToString:@"userProtocol"]) {
        //《用户协议》
        NSLog(@"点击了《用户协议》");
        return NO;
    }
    return YES;
}

#pragma Others
//----------------------------------
- (NSAttributedString *)getContentLabelAttributedText:(NSString *)text
{
    NSMutableAttributedString *attrStr = [[NSMutableAttributedString alloc] initWithString:text attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:JnContentSize],NSForegroundColorAttributeName:[self colorWithHexString:@"#333333"]}];
    [attrStr addAttribute:NSForegroundColorAttributeName value:[self colorWithHexString:@"#528DF0"] range:NSMakeRange(text.length-154, 6)];
    [attrStr addAttribute:NSLinkAttributeName value:@"privacyPolicy://" range:NSMakeRange(text.length-154, 6)];
    
    [attrStr addAttribute:NSForegroundColorAttributeName value:[self colorWithHexString:@"#528DF0"] range:NSMakeRange(text.length-147, 6)];
    [attrStr addAttribute:NSLinkAttributeName value:@"userProtocol://" range:NSMakeRange(text.length-147, 6)];

    return attrStr;
}
image.png
上一篇下一篇

猜你喜欢

热点阅读