iOS的技术论坛

NSAttributedString

2017-07-18  本文已影响77人  dvlproad

NSAttributedString

An NSAttributedString object manages character strings and associated sets of attributes (for example, font and kerning) that apply to individual characters or ranges of characters in the string. An association of characters and their attributes is called an attributed string;
这句话就是对这个类的一个最简明扼要的概括。NSAttributedString管理一个字符串,以及与该字符串中的单个字符或某些范围的字符串相关的属性。它有一个子类NSMutableAttributedString。具体实现时,NSAttributedString维护了一个NSString,用来保存最原始的字符串,另有一个NSDictionary用来保存各个子串/字符的属性。

NSAttributedString 的21种属性详细介绍
* API: Character Attributes , NSAttributedString 共有21个属性*
* 1. NSFontAttributeName ->设置字体属性,默认值:字体:Helvetica(Neue) 字号:12  
* 2. NSParagraphStyleAttributeName ->设置文本段落排版格式,取值为 NSParagraphStyle 对象(详情见下面的API说明) 
* 3. NSForegroundColorAttributeName ->设置字体颜色,取值为 UIColor对象,默认值为黑色 
* 4. NSBackgroundColorAttributeName ->设置字体所在区域背景颜色,取值为 UIColor对象,默认值为nil, 透明色 
* 5. NSLigatureAttributeName ->设置连体属性,取值为NSNumber 对象(整数),0 表示没有连体字符,1 表示使用默认的连体字符
* 6. NSKernAttributeName ->设置字符间距,取值为 NSNumber 对象(整数),正值间距加宽,负值间距变窄 
* 7. NSStrikethroughStyleAttributeName ->设置删除线,取值为 NSNumber 对象(整数) 
* 8. NSStrikethroughColorAttributeName ->设置删除线颜色,取值为 UIColor 对象,默认值为黑色 
* 9. NSUnderlineStyleAttributeName     ->设置下划线,取值为 NSNumber 对象(整数),枚举常量 NSUnderlineStyle中的值,与删除线类似 
* 10. NSUnderlineColorAttributeName    ->设置下划线颜色,取值为 UIColor 对象,默认值为黑色 
* 11. NSStrokeWidthAttributeName ->设置笔画宽度(粗细),取值为 NSNumber 对象(整数),负值填充效果,正值中空效果 
* 12. NSStrokeColorAttributeName ->填充部分颜色,不是字体颜色,取值为 UIColor 对象 
* 13. NSShadowAttributeName ->设置阴影属性,取值为 NSShadow 对象 
* 14. NSTextEffectAttributeName ->设置文本特殊效果,取值为 NSString 对象,目前只有图版印刷效果可用 
* 15. NSBaselineOffsetAttributeName ->设置基线偏移值,取值为 NSNumber (float),正值上偏,负值下偏 
* 16. NSObliquenessAttributeName ->设置字形倾斜度,取值为 NSNumber (float),正值右倾,负值左倾 
* 17. NSExpansionAttributeName ->设置文本横向拉伸属性,取值为 NSNumber (float),正值横向拉伸文本,负值横向压缩文本 
* 18. NSWritingDirectionAttributeName   ->设置文字书写方向,从左向右书写或者从右向左书写 
* 19. NSVerticalGlyphFormAttributeName  ->设置文字排版方向,取值为 NSNumber 对象(整数),0 表示横排文本,1 表示竖排文本
* 20. NSLinkAttributeName ->设置链接属性,点击后调用浏览器打开指定URL地址 
* 21. NSAttachmentAttributeName ->设置文本附件,取值为NSTextAttachment对象,常用于文字图片混排

NSParagraphStyleAttributeName 段落的风格

NSParagraphStyleAttributeName 段落的风格(设置首行,行间距,对齐方式什么的)看自己需要什么属性,写什么

    NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];  
    paragraphStyle.lineSpacing = 10;// 字体的行间距  
    paragraphStyle.firstLineHeadIndent = 20.0f;//首行缩进  
    paragraphStyle.alignment = NSTextAlignmentJustified;//(两端对齐的)文本对齐方式:(左,中,右,两端对齐,自然)  
    paragraphStyle.lineBreakMode = NSLineBreakByTruncatingTail;//结尾部分的内容以……方式省略 ( "...wxyz" ,"abcd..." ,"ab...yz")  
    paragraphStyle.headIndent = 20;//整体缩进(首行除外)  
    paragraphStyle.tailIndent = 20;//  
    paragraphStyle.minimumLineHeight = 10;//最低行高  
    paragraphStyle.maximumLineHeight = 20;//最大行高  
    paragraphStyle.paragraphSpacing = 15;//段与段之间的间距  
    paragraphStyle.paragraphSpacingBefore = 22.0f;//段首行空白空间/* Distance between the bottom of the previous paragraph (or the end of its paragraphSpacing, if any) and the top of this paragraph. */  
    paragraphStyle.baseWritingDirection = NSWritingDirectionLeftToRight;//从左到右的书写方向(一共➡️三种)  
    paragraphStyle.lineHeightMultiple = 15;/* Natural line height is multiplied by this factor (if positive) before being constrained by minimum and maximum line height. */  
    paragraphStyle.hyphenationFactor = 1;//连字属性 在iOS,唯一支持的值分别为0和1  

计算文本宽高等

有了NSAttributed的属性后,现在就可以很轻松的计算某一段落高度

    NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
    [paragraphStyle setLineSpacing:1];  //行间距 

    NSDictionary *attributes = @{NSFontAttributeName:           font,
                                 NSParagraphStyleAttributeName: paragraphStyle};
    
    NSStringDrawingOptions options = NSStringDrawingUsesLineFragmentOrigin;
    
    CGRect textRect = [self boundingRectWithSize:maxSize
                                         options:options
                                      attributes:attributes
                                         context:nil];
    CGSize size = textRect.size;
    return CGSizeMake(ceil(size.width), ceil(size.height));

YYLabel的富文本

#pragma mark - 注意:对于YYLabel的textAlignment的设置必须在attributedText之后,否则无效,即否则会变成默认的NSTextAlignmentLeft
    //self.yyLabel.textAlignment = NSTextAlignmentCenter;  //错误,写在attributedText设置之前是无效的
    self.yyLabel.attributedText = allAttributedString;
    self.yyLabel.textAlignment = NSTextAlignmentCenter;  //注意:对于YYLabel的textAlignment的设置必须在attributedText之后,否则无效,即否则会变成默认的NSTextAlignmentLeft
    self.yyLabel.textVerticalAlignment = YYTextVerticalAlignmentCenter;
    self.yyLabel.numberOfLines = 0;
上一篇下一篇

猜你喜欢

热点阅读