YYKit是个好东西-YYLabel实现一个文本多个点击事件

有时候需要实现一个文本多个点击事件的东西,如此图中的用户协议和隐私政策都需要点击跳转对应的页面,可以使用YYLabel来快速实现

NSString *agreementText = @"点击登录即表示已同意并同意《xxx用户协议》与《xxx隐私政策》";

NSMutableAttributedString *text  = [[NSMutableAttributedString alloc] initWithString:agreementText];

text.lineSpacing = 5;//行间距

text.font = [UIFont systemFontOfSize:14];

text.color = [UIColor grayColor];

[text setTextHighlightRange:NSMakeRange(13, 9) color:[UIColor redColor] backgroundColor:[UIColor clearColor] tapAction:^(UIView * _Nonnull containerView, NSAttributedString * _Nonnull text, NSRange range, CGRect rect) {

            NSLog(@"用户协议被点击了");

  }];

        [text setTextHighlightRange:NSMakeRange(agreementText.length-9, 9) color:[UIColor redColor]  backgroundColor:[UIColor clearColor] tapAction:^(UIView * _Nonnull containerView, NSAttributedString * _Nonnull text, NSRange range, CGRect rect) {

           NSLog(@"隐私政策被点击了");

        }];

YYLabel *agreementLabel = [YYLabel new];

agreementLabel.numberOfLines = 0;//多行

agreementLabel.preferredMaxLayoutWidth = kScreenWidth-85;//最大宽度

agreementLabel.attributedText = text;

[self.view addSubview:agreementLabel];

你可能感兴趣的:(YYKit是个好东西-YYLabel实现一个文本多个点击事件)