iOS- 詳解文字屬性Attributes

weixin_34239169發表於2016-07-22

1.NSKernAttributeName:

@10調整字句 kerning 字句調整

2.NSFontAttributeName :

[UIFont systemFontOfSize:_fontSize] 設定字型

3.NSForegroundColorAttributeName

:[UIColor redColor] 設定文字顏色

4.NSParagraphStyleAttributeName :

paragraph 設定段落樣式

NSMutableParagraphStyle *paragraph = [[NSMutableParagraphStyle alloc] init];

paragraph.alignment = NSTextAlignmentCenter;

6.NSBackgroundColorAttributeName:

[UIColor blackColor] 設定背景顏色

7.NSStrokeColorAttributeName

設定文字描邊顏色,需要和NSStrokeWidthAttributeName設定描邊寬度,這樣就能使文字空心.

NSStrokeWidthAttributeName這個屬性所對應的值是一個 NSNumber 物件(小數)。該值改變描邊寬度(相對於字型size 的百分比)。預設為 0,即不改變。正數只改變描邊寬度。負數同時改變文字的描邊和填充寬度。例如,對於常見的空心字,這個值通常為3.0。

同時設定了空心的兩個屬性,並且NSStrokeWidthAttributeName屬性設定為整數,文字前景色就無效果了

相關文章