nsstring * textstr = @"周杰倫(jay chou),2023年1月18日出生於台灣省新北市,華語男歌手、詞曲創作人、演員、mv及電影導演、編劇及製作人。2023年發行首張個人**《jay》。2023年發行**《范特西》。2023年在中國、新加坡、馬來西亞、美國等地舉辦首場個人世界巡迴演唱會。2023年登上美國《時代周刊》亞洲版封面人物。";
nsattributedstring * astr = [[nsattributedstring alloc]initwithstring:textstr];
[seestr addattribute:nsforegroundcolorattributename value:[uicolor redcolor] range:nsmakerange(0, seestr.length)];
//設定字型和大小
[seestr addattribute:nsfontattributename value:[uifont systemfontofsize:12] range:nsmakerange(0, seestr.length)];
[seestr insertattributedstring:astr atindex:0];
self.mylabel.attributedtext = seestr;
ios開發 富文字
富文字屬性attributes 1 nsfontattributename 設定字型字型大小 2 nsforegroundcolorattributename 設定文字顏色 3 nskernattributename 設定字元間距 4 nsparagraphstyleattributename 設定...
ios富文字編輯
最近的專案要用到富文字編輯來實現其中的修改文件功能。先是在github是找了一些editor,效果都不是很滿意,多是使用coretext來實現的,但attribute text與html的轉換十分繁鎖,所找到的控制項只有外讀時轉化為html的方法,而沒有載入時轉換到attribute text的方法...
iOS 富文字屬性
nsfontattributename 設定字型屬性,預設值 字型 helvetica neue 字型大小 12 nsforegroundcolorattributenam 設定字型顏色,取值為 uicolor物件,預設值為黑色 nsbackgroundcolorattributename 設定字型...