国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > iOS > 正文

iOS富文本的使用方法示例詳解

2020-07-26 02:35:36
字體:
供稿:網(wǎng)友

前言

常常會有一段文字顯示不同的顏色和字體,或者給某幾個文字加刪除線或下劃線的需求。

使用富文本NSMuttableAttstring(帶屬性的字符串),上面的一些需求都可以很簡便的實現(xiàn)。

最近想實現(xiàn)一個功能,如圖:

每月價格

最初實現(xiàn)的時候想到了用兩個Label,來實現(xiàn),第一個顯示¥4000,設(shè)置一個字體,第二個顯示/月,設(shè)置另一個字體.這樣就能實現(xiàn)這個效果了,但是最后想一想還是用富文本比較好,順便可以學(xué)習(xí)一下.

今天我們先實現(xiàn)這個簡單的效果.

先創(chuàng)建一個Label:

-(UILabel *)priceLabel{ if (_priceLabel == nil) { _priceLabel = [[UILabel alloc]init]; _priceLabel.font = kFONT(13); _priceLabel.textColor = kColorTheme; _priceLabel.textAlignment = NSTextAlignmentRight; } return _priceLabel;}

自己再創(chuàng)建一個私有方法,把字符串(比如:¥4000/月)傳進(jìn)來,進(jìn)行轉(zhuǎn)換,返回富文本,賦值給所需要的Label.

-(NSMutableAttributedString *)getPriceAttribute:(NSString *)string{  NSMutableAttributedString *attribut = [[NSMutableAttributedString alloc]initWithString:string]; //目的是想改變 ‘/'前面的字體的屬性,所以找到目標(biāo)的range NSRange range = [string rangeOfString:@"/"]; NSRange pointRange = NSMakeRange(0, range.location); NSMutableDictionary *dic = [NSMutableDictionary dictionary]; dic[NSFontAttributeName] = [UIFont systemFontOfSize:18]; //賦值 [attribut addAttributes:dic range:pointRange];  return attribut;}

首先創(chuàng)建一個富文本NSMutableAttributedString對象,把傳進(jìn)來的NSString對象轉(zhuǎn)化為NSMutableAttributedString對象.
然后對NSMutableAttributedString進(jìn)行設(shè)置.

NSRange range = [string rangeOfString:@"/"];取到一個標(biāo)志的位置:range,然后對"/"前面的文字進(jìn)行設(shè)置.

然后,返回富文本,再進(jìn)行賦值.

 _priceLabel.attributedText = [self getPriceAttribute:@"¥4000/月"]; 

上面只是一個簡單應(yīng)用,還有很多常用到的富文本.比如,文字和圖片的混排,文字點擊事件.等等.

我們依次實現(xiàn)一些功能

在指定位置添加圖片

NSMutableAttributedString * attriStr = [[NSMutableAttributedString alloc] initWithString:@"不要問我為什么編程,我喜歡手指在鍵盤上飛舞的感覺"];[attriStr addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(0, 5)];[attriStr addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:20] range:NSMakeRange(0, 5)];

添加圖片到指定的位置

NSTextAttachment *attchImage = [[NSTextAttachment alloc] init];// 表情圖片attchImage.image = [UIImage imageNamed:@"pic3"];// 設(shè)置圖片大小attchImage.bounds = CGRectMake(0, -5, 20, 20);NSAttributedString *stringImage = [NSAttributedString attributedStringWithAttachment:attchImage];[attriStr insertAttributedString:stringImage atIndex:2];

追加圖片到最后一位

NSTextAttachment *attch = [[NSTextAttachment alloc] init];// 表情圖片attch.image = [UIImage imageNamed:@"pic2"];// 設(shè)置圖片大小attch.bounds = CGRectMake(0, -5, 20, 15);// 創(chuàng)建帶有圖片的富文本NSAttributedString *string = [NSAttributedString attributedStringWithAttachment:attch];[attriStr appendAttributedString:string];

設(shè)置中間位置文字為紅色

[attriStr addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(6, 4)];[attriStr addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:30] range:NSMakeRange(6, 4)];

綜合寫法

NSDictionary * attriBute = @{NSForegroundColorAttributeName:[UIColor yellowColor],NSFontAttributeName:[UIFont systemFontOfSize:25]};[attriStr addAttributes:attriBute range:NSMakeRange(10, 4)];self.attrobiuteLabel.attributedText = attriStr;

效果圖:


最后認(rèn)識一下各個屬性的意思:

// NSFontAttributeName    設(shè)置字體屬性,默認(rèn)值:字體:Helvetica(Neue) 字號:12// NSForegroundColorAttributeNam  設(shè)置字體顏色,取值為 UIColor對象,默認(rèn)值為黑色// NSBackgroundColorAttributeName  設(shè)置字體所在區(qū)域背景顏色,取值為 UIColor對象,默認(rèn)值為nil, 透明色// NSLigatureAttributeName   設(shè)置連體屬性,取值為NSNumber 對象(整數(shù)),0 表示沒有連體字符,1 表示使用默認(rèn)的連體字符// NSKernAttributeName    設(shè)定字符間距,取值為 NSNumber 對象(整數(shù)),正值間距加寬,負(fù)值間距變窄// NSStrikethroughStyleAttributeName 設(shè)置刪除線,取值為 NSNumber 對象(整數(shù))// NSStrikethroughColorAttributeName 設(shè)置刪除線顏色,取值為 UIColor 對象,默認(rèn)值為黑色// NSUnderlineStyleAttributeName  設(shè)置下劃線,取值為 NSNumber 對象(整數(shù)),枚舉常量 NSUnderlineStyle中的值,與刪除線類似// NSUnderlineColorAttributeName  設(shè)置下劃線顏色,取值為 UIColor 對象,默認(rèn)值為黑色// NSStrokeWidthAttributeName   設(shè)置筆畫寬度,取值為 NSNumber 對象(整數(shù)),負(fù)值填充效果,正值中空效果// NSStrokeColorAttributeName   填充部分顏色,不是字體顏色,取值為 UIColor 對象// NSShadowAttributeName    設(shè)置陰影屬性,取值為 NSShadow 對象// NSTextEffectAttributeName   設(shè)置文本特殊效果,取值為 NSString 對象,目前只有圖版印刷效果可用:// NSBaselineOffsetAttributeName  設(shè)置基線偏移值,取值為 NSNumber (float),正值上偏,負(fù)值下偏// NSObliquenessAttributeName   設(shè)置字形傾斜度,取值為 NSNumber (float),正值右傾,負(fù)值左傾// NSExpansionAttributeName   設(shè)置文本橫向拉伸屬性,取值為 NSNumber (float),正值橫向拉伸文本,負(fù)值橫向壓縮文本// NSWritingDirectionAttributeName 設(shè)置文字書寫方向,從左向右書寫或者從右向左書寫// NSVerticalGlyphFormAttributeName 設(shè)置文字排版方向,取值為 NSNumber 對象(整數(shù)),0 表示橫排文本,1 表示豎排文本// NSLinkAttributeName    設(shè)置鏈接屬性,點擊后調(diào)用瀏覽器打開指定URL地址// NSAttachmentAttributeName   設(shè)置文本附件,取值為NSTextAttachment對象,常用于文字圖片混排// NSParagraphStyleAttributeName  設(shè)置文本段落排版格式,取值為 NSParagraphStyle 對象

格式&排版

上面屬性的最后一個就是排版.需要去一NSMutableParagraphStyle的對象.直接上代碼:

NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];paragraphStyle.alignment = aligent;paragraphStyle.lineSpacing = lineSpace; // 調(diào)整行間距paragraphStyle.firstLineHeadIndent = firstLineHeadIndent;//首行縮進(jìn)NSRange range = NSMakeRange(0, [string length]);[attributedString addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:range];

我們再來認(rèn)識一下NSMutableParagraphStyle的屬性:

CGFloat lineSpacing;     // 字體的行間距 CGFloat paragraphSpacing;   // 段與段之間的間距 NSTextAlignment alignment;   // (兩端對齊的)文本對齊方式(左,中,右,兩端對齊,自然) CGFloat firstLineHeadIndent;   // 首行縮進(jìn) CGFloat headIndent;     // 整體縮進(jìn)(首行除外) CGFloat tailIndent;     // 尾部縮進(jìn)NSLineBreakMode lineBreakMode;  // 結(jié)尾部分的內(nèi)容以……方式省略CGFloat minimumLineHeight;   // 最低行高CGFloat maximumLineHeight;   // 最大行高 NSWritingDirection baseWritingDirection; // 書寫方向CGFloat lineHeightMultiple;   // 行間距多少倍CGFloat paragraphSpacingBefore;  // 段首行空白空float hyphenationFactor;    // 連字屬性 在iOS,唯一支持的值分別為0和1 

設(shè)置了這么多的格式,進(jìn)行了各種各樣的排版那么怎么計算行高呢.

- (CGRect)boundingRectWithSize:(CGSize)size options:(NSStringDrawingOptions)options context:(nullable NSStringDrawingContext *)context NS_AVAILABLE(10_11, 6_0);

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

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,如果有疑問大家可以留言交流,謝謝大家對武林網(wǎng)的支持。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 都匀市| 兴宁市| 大连市| 阳西县| 桓台县| 光泽县| 阿图什市| 京山县| 苗栗市| 赣榆县| 淳安县| 双鸭山市| 南昌市| 新建县| 阳谷县| 探索| 丰城市| 昭苏县| 拜城县| 高青县| 明光市| 铜川市| 南平市| 凌源市| 历史| 乐昌市| 公主岭市| 道孚县| 观塘区| 浮梁县| 南汇区| 驻马店市| 阿克| 阳春市| 东源县| 同江市| 桂林市| 石河子市| 松滋市| 江都市| 兰州市|