文本屬性Attributes
1.NSKernAttributeName: @10調(diào)整字句kerning字句調(diào)整
2.NSFontAttributeName : [UIFont systemFontOfSize:_fontSize]設(shè)置字體
3.NSForegroundColorAttributeName :[UIColor redColor]設(shè)置文字顏色
4.NSParagraphStyleAttributeName : paragraph設(shè)置段落樣式
5.NSMutableParagraphStyle *paragraph = [[NSMutableParagraphStyle alloc] init];
paragraph.alignment = NSTextAlignmentCenter;
6.NSBackgroundColorAttributeName: [UIColor blackColor]設(shè)置背景顏色
7.NSStrokeColorAttributeName設(shè)置文字描邊顏色沥邻,需要和NSStrokeWidthAttributeName設(shè)置描邊寬度唐全,這樣就能使文字空心.
NSStrokeWidthAttributeName這個屬性所對應的值是一個NSNumber對象(小數(shù))蕊玷。該值改變描邊寬度(相對于字體size的百分比)。默認為0垃帅,即不改變贸诚。正數(shù)只改變描邊寬度。負數(shù)同時改變文字的描邊和填充寬度酱固。例如媒怯,對于常見的空心字,這個值通常為3.0扇苞。
同時設(shè)置了空心的兩個屬性,并且NSStrokeWidthAttributeName屬性設(shè)置為整數(shù)脖苏,文字前景色就無效果了
效果:
效果:
8. NSStrikethroughStyleAttributeName添加刪除線棍潘,strikethrough刪除線
效果:
9. NSUnderlineStyleAttributeName添加下劃線
效果:
10. NSShadowAttributeName設(shè)置陰影恤浪,單獨設(shè)置不好使肴楷,必須和其他屬性搭配才好使。
和這三個任一個都好使赛蔫,NSVerticalGlyphFormAttributeName,NSObliquenessAttributeName鞠值,NSExpansionAttributeName
11.NSVerticalGlyphFormAttributeName
該屬性所對應的值是一個NSNumber對象(整數(shù))渗钉。0表示橫排文本。1表示豎排文本粤剧。在iOS中挥唠,總是使用橫排文本,0以外的值都未定義弧关。
效果:
12. NSObliquenessAttributeName設(shè)置字體傾斜唤锉。Skew斜
效果:
13. NSExpansionAttributeName設(shè)置文本扁平化
效果: