NSMutableAttributedString *str = [[NSMutableAttributedStringalloc]initWithString:@"注册表明您已阅读并同意《****注册协议》"];
[straddAttribute:NSLinkAttributeNamevalue:@"http://www.tongchengjinrong.com"
range:NSMakeRange(11,10)];
UITextView *tfv = [[UITextViewalloc]initWithFrame:CGRectMake(10,100,
self.view.bounds.size.width
-20, 30)];
tfv.backgroundColor = [UIColorclearColor];
tfv.editable =NO;
tfv.delegate =self;
tfv.scrollEnabled =NO;
tfv.showsVerticalScrollIndicator =NO;
tfv.attributedText = str;
tfv.textColor = [UIColorgrayColor];
tfv.font = [UIFontsystemFontOfSize:15];
[self.viewaddSubview:tfv];
- (BOOL)textView:(UITextView *)textView shouldInteractWithURL:(NSURL *)URL inRange:(NSRange)characterRange
{
//跳转到内置webView
WebViewController *vc =
[[WebViewControlleralloc]initWithUrl:[[URLabsoluteString] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]
;
returnNO;
}