iOS 富文本

來源:互聯網
上載者:User

標籤: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感謝博主的分享
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.