rtlabel 基於uilabel類的拓展,能夠支援html標記的富文字顯示,它是基於core text,因此也支援core text上的一些東西。
1)將rtlabel.h 和 rtlabel.m 拖拽道你的工程中,匯入core text.framework。新增標頭檔案
1
#import "rtlabel.h"
2)建立乙個rtlabel
1
2
3
4
nsstring *sample_text = @
"bold,italic and underlined text, and text with custom font and color"
;
rtlabel *label = [[rtlabel alloc] initwithframe:...];
[self addsubview:label];
[label settext:sample_text];
3)支援以下標籤
iOS 富文字類庫RTLabel
基於富文字的格式,適用於ios,類似html的標記。rtlabel 基於uilabel類的拓展,能夠支援html標記的富文字顯示,它是基於core text,因此也支援core text上的一些東西。1 將rtlabel.h 和 rtlabel.m 拖拽道你的工程中,匯入core text.fram...
ios開發 富文字
富文字屬性attributes 1 nsfontattributename 設定字型字型大小 2 nsforegroundcolorattributename 設定文字顏色 3 nskernattributename 設定字元間距 4 nsparagraphstyleattributename 設定...
ios富文字編輯
最近的專案要用到富文字編輯來實現其中的修改文件功能。先是在github是找了一些editor,效果都不是很滿意,多是使用coretext來實現的,但attribute text與html的轉換十分繁鎖,所找到的控制項只有外讀時轉化為html的方法,而沒有載入時轉換到attribute text的方法...