iOS技術文檔No.4 AppKit_NSMutableParagraphStyle與NSParagraphStyle的使用

開發過程中,經常會遇到動態計算行高的問題,

  • (CGRect)boundingRectWithSize:(CGSize)size options:(NSStringDrawingOptions)options attributes:(nullable NSDictionary<NSString *, id> *)attributes context:(nullable NSStringDrawingContext *)context NS_AVAILABLE(10_11, 7_0);

是蘋果推薦的計算方法,顯然會遇到段落格式問題,例如行間距、縮進等格式設置需求,attributes傳進來的字典中,包含我們設置的字體及格式,其中NSParagraphStyleAttributeName是設置段落風格,NSFontAttributeName是設置字體。

ok,具體來看一下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    

好了,現在就可以很輕松的計算某一段落高度,例如:

_descAtt = [[NSMutableAttributedString alloc] initWithString:_model.desc];  
       UIFont *descFont = [UIFont PingFangSC_Regular_WithSize:12];  
         
       NSMutableParagraphStyle *descStyle = [[NSMutableParagraphStyle alloc]init];  
       [descStyle setLineSpacing:1];//行間距  
         
       CGSize descSize = [_model.desc boundingRectWithSize:CGSizeMake(w, MAXFLOAT)  
                                                   options:NSStringDrawingUsesLineFragmentOrigin  
                                                attributes:@{NSFontAttributeName:descFont,  
                                                             NSParagraphStyleAttributeName :descStyle}  
                                                   context:nil].size;  

你也可以把計算文字的方法寫成工具類:

+(CGSize)detailSizeWithStr:(NSString *)string maxWidth:(CGFloat)width withFont:(CGFloat)font{
    CGSize detailSize = [string boundingRectWithSize:CGSizeMake(width, MAXFLOAT) options:NSStringDrawingTruncatesLastVisibleLine | NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:font]} context:nil].size;
    return detailSize;
}

另外,再介紹幾個富文本處理的屬性:

// NSFontAttributeName                設置字體屬性,默認值:字體:Helvetica(Neue) 字號:12  
// NSForegroundColorAttributeNam      設置字體顏色,取值為 UIColor對象,默認值為黑色  
// NSBackgroundColorAttributeName     設置字體所在區域背景顏色,取值為 UIColor對象,默認值為nil, 透明色  
// NSLigatureAttributeName            設置連體屬性,取值為NSNumber 對象(整數),0 表示沒有連體字符,1 表示使用默認的連體字符  
// NSKernAttributeName                設定字符間距,取值為 NSNumber 對象(整數),正值間距加寬,負值間距變窄  
// NSStrikethroughStyleAttributeName  設置刪除線,取值為 NSNumber 對象(整數)  
// NSStrikethroughColorAttributeName  設置刪除線顏色,取值為 UIColor 對象,默認值為黑色  
// NSUnderlineStyleAttributeName      設置下劃線,取值為 NSNumber 對象(整數),枚舉常量 NSUnderlineStyle中的值,與刪除線類似  
// NSUnderlineColorAttributeName      設置下劃線顏色,取值為 UIColor 對象,默認值為黑色  
// NSStrokeWidthAttributeName         設置筆畫寬度,取值為 NSNumber 對象(整數),負值填充效果,正值中空效果  
// NSStrokeColorAttributeName         填充部分顏色,不是字體顏色,取值為 UIColor 對象  
// NSShadowAttributeName              設置陰影屬性,取值為 NSShadow 對象  
// NSTextEffectAttributeName          設置文本特殊效果,取值為 NSString 對象,目前只有圖版印刷效果可用:  
// NSBaselineOffsetAttributeName      設置基線偏移值,取值為 NSNumber (float),正值上偏,負值下偏  
// NSObliquenessAttributeName         設置字形傾斜度,取值為 NSNumber (float),正值右傾,負值左傾  
// NSExpansionAttributeName           設置文本橫向拉伸屬性,取值為 NSNumber (float),正值橫向拉伸文本,負值橫向壓縮文本  
// NSWritingDirectionAttributeName    設置文字書寫方向,從左向右書寫或者從右向左書寫  
// NSVerticalGlyphFormAttributeName   設置文字排版方向,取值為 NSNumber 對象(整數),0 表示橫排文本,1 表示豎排文本  
// NSLinkAttributeName                設置鏈接屬性,點擊后調用瀏覽器打開指定URL地址  
// NSAttachmentAttributeName          設置文本附件,取值為NSTextAttachment對象,常用于文字圖片混排  
// NSParagraphStyleAttributeName      設置文本段落排版格式,取值為 NSParagraphStyle 對象  
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。

推薦閱讀更多精彩內容