有時可能會遇到這樣的問題,乙個label中設定的文字含有2種以上不同的格式,又不能把它拆解為兩個label來顯示,這時用nsmutableattributedstring可以很好的解決問題。
示例如下:
nsmutableattributedstring
*text =[[
nsmutableattributedstring
alloc
]initwithattributedstring
:label
.attributedtext];[
text addattribute
:nsforegroundcolorattributename
value:[
uicolor
redcolor
]range
:nsmakerange(10
,1)];[
label setattributedtext
:text
];
ios開發 富文字
富文字屬性attributes 1 nsfontattributename 設定字型字型大小 2 nsforegroundcolorattributename 設定文字顏色 3 nskernattributename 設定字元間距 4 nsparagraphstyleattributename 設定...
IOS開發之格式化日期時間
在開發ios程式時,有時候需要將時間格式調整成自己希望的格式,這個時候我們可以用nsdateformatter類來處理。例如 例項化乙個nsdateformatter物件 nsdateformatter dateformatter nsdateformatter alloc init 設定時間格式,...
IOS開發之格式化日期時間
在開發ios程式時,有時候需要將時間格式調整成自己希望的格式,這個時候我們可以用nsdateformatter類來處理。例如 例項化乙個nsdateformatter物件 nsdateformatter dateformatter nsdateformatter alloc init 設定時間格式,...