NSString * ldText = @"首次登錄或注冊(cè) 請(qǐng)前往http://www.baidu.com";
1.先創(chuàng)建一個(gè)屬性字符串
?NSMutableAttributedString *AttributedStr = [[NSMutableAttributedString alloc]initWithString:ldText];
2.取出這段字符串中要特殊處理的子字符串的range
?NSRange? range = [ldText rangeOfString:@"http://www.baidu.com"];
3.可以設(shè)置子串字符的文字Fount 一定用的是addAttribute
[AttributedStr addAttribute:NSFontAttributeName value:[UIFont boldSystemFontOfSize:13.0] range:NSMakeRange(0, ldText.length)];
4.可以設(shè)置子串字符的顏色
?[AttributedStr addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] ?range:range];
5.可以設(shè)置子串字符的下劃線 value一定是@()值
? [AttributedStr addAttribute:NSUnderlineStyleAttributeName value:@(NSUnderlineStyleSingle) ange:range];
6........簡單至此 可以看到? @"首次登錄或注冊(cè) 請(qǐng)前往http://www.baidu.com";? 這段字符串中的http://www.baidu.com 顏色為藍(lán)色 有下滑線
7.點(diǎn)擊http://www.baidu.com (顏色為藍(lán)色 有下滑線)這段子串時(shí) 可以跳往百度
8.這個(gè)功能其實(shí)很簡單的 搞了一下午 未完待續(xù).......