標籤:com http blog style div img c log t sp ext
富文本
http://pan.baidu.com/s/1pJnY8BL把這裡下載的檔案夾拖進自己的工程引入標頭檔#import "OHAttributedLabel.h"#import "OHParagraphStyle.h"#import "OHTouchesGestureRecognizer.h" 引入這3個標頭檔 添加 CoreText.framework // 建立富文本string NSMutableAttributedString* attrStr = \ [NSMutableAttributedString attributedStringWithString:\ @"還記得嗎,窗外那被月光染亮的海洋\ 你還記得嗎,是愛讓彼此把夜點亮\ 為何後來我們用沉默取代依賴 曾經朗朗星空,漸漸陰霾\ 心碎離開,轉身回到最初荒涼裡等待 為了寂寞,是否找個人填心中空白\ 我們變成了世上,最熟悉的陌生人 今後各自曲折,各自悲哀\ 只怪我們愛得那麼洶湧,愛得那麼深 於是夢醒了擱淺了沉默了揮手了\ 卻回不了神,如果當初在交會時能忍住了 激動的靈魂"];[attrStr setTextColor:[UIColor whiteColor]]; [attrStr setTextColor:[UIColor redColor] range:NSMakeRange(9,4)]; [attrStr setTextIsUnderlined:YES range:NSMakeRange(9, 4)]; [attrStr setTextColor:[UIColor greenColor] range:NSMakeRange(125,30)];// 設定樣式 OHParagraphStyle* paragraphStyle = [OHParagraphStyle defaultParagraphStyle]; paragraphStyle.textAlignment = kCTTextAlignmentLeft; paragraphStyle.lineBreakMode = kCTLineBreakByWordWrapping; paragraphStyle.firstLineHeadIndent = 0.f; // indentation for first line paragraphStyle.lineSpacing = 3.f; // increase space between lines by 3 points [attrStr setParagraphStyle:paragraphStyle]; // 初始化富文本label OHAttributedLabel *label = \ [[OHAttributedLabel alloc] initWithFrame:CGRectMake(0, 0, 300, 200)]; label.attributedText = attrStr; label.center = self.view.center; // 添加進主視圖 [self.view addSubview:label];以下是遊賢代碼 http://www.cnblogs.com/YouXianMing/p/3656900.html這個是設定富文本字型的https://github.com/daktales/UIFontWDCustomLoader需要把這裡下載的兩個檔案夾拖入工程 想用什麼字型就把字型從網上下載下來記住一定要是ttf格式的檔案哦 拖進工程 然後引入標頭檔然後擷取字型URL 註冊字型 設定字型風格效果如下具體的demo請鑒案頭·備用·demo·FontStyle相關的連結有http://www.cnblogs.com/YouXianMing/p/3656900.html感謝博主的分享