效果图:
- (void)protocolView:(NSString *)protocolName {
NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@"我已阅读并同意%@",protocolName]];
[attributedString addAttribute:NSLinkAttributeName
value:@"protocol://"
range:[[attributedString string] rangeOfString:protocolName]];
[attributedString addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:12] range:NSMakeRange(0, attributedString.length)];
UITextView *topButton = [[UITextView alloc] init];
[self addSubview:topButton];
topButton.attributedText = attributedString;
topButton.linkTextAttributes = @{NSForegroundColorAttributeName: [U