1. 程式人生 > >iOS 富文本所有的NSAttributedStringKey

iOS 富文本所有的NSAttributedStringKey

nec 背景色 寬度 間距 ios set vertical eof tex

NSAttributedStringKey:

 1 NSFontAttributeName; //字體,value是UIFont對象
 2 NSParagraphStyleAttributeName;//繪圖的風格(居中,換行模式,間距等諸多風格),value是NSParagraphStyle對象
 3 NSForegroundColorAttributeName;// 文字顏色,value是UIFont對象
 4 NSBackgroundColorAttributeName;// 背景色,value是UIFont
 5 NSLigatureAttributeName; //  字符連體,value是NSNumber
6 NSKernAttributeName; // 字符間隔 7 NSStrikethroughStyleAttributeName;//刪除線,value是NSNumber 8 NSUnderlineStyleAttributeName;//下劃線,value是NSNumber 9 NSStrokeColorAttributeName; //描繪邊顏色,value是UIColor 10 NSStrokeWidthAttributeName; //描邊寬度,value是NSNumber 11 NSShadowAttributeName; //陰影,value是NSShadow對象 12 NSTextEffectAttributeName; //
文字效果,value是NSString 13 NSAttachmentAttributeName;//附屬,value是NSTextAttachment 對象 14 NSLinkAttributeName;//鏈接,value是NSURL or NSString 15 NSBaselineOffsetAttributeName;//基礎偏移量,value是NSNumber對象 16 NSUnderlineColorAttributeName;//下劃線顏色,value是UIColor對象 17 NSStrikethroughColorAttributeName;//刪除線顏色,value是UIColor 18 NSObliquenessAttributeName; //
字體傾斜 19 NSExpansionAttributeName; //字體扁平化 20 NSVerticalGlyphFormAttributeName;//垂直或者水平,value是 NSNumber,0表示水平,1垂直

iOS 富文本所有的NSAttributedStringKey