91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS利用NSAttributedString實現圖文混排效果示例

發布時間:2020-09-11 20:37:32 來源:腳本之家 閱讀:317 作者:Mazy_ma 欄目:移動開發

前言

NSAttributedString 可以非常方便的實現文字排版和圖文混排功能,UILabel 和 UITextView 都能添加 NSAttributedString 屬性字符串,通過這一點,可以實現帶有屬性的文字和文字內包含圖片的文本內容展示。話不多說了,下面來一起看看詳細的介紹吧。

效果如下:

iOS利用NSAttributedString實現圖文混排效果示例

iOS利用NSAttributedString實現圖文混排效果示例

示例代碼如下:

1-初始化可變屬性字符串

 NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc]initWithString:textString];

2-設置全局字體屬性(設置字體大小為14)

 [attributedString addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:14] range:NSMakeRange(0, textString.length)];
 [attributedString addAttribute:NSKernAttributeName value:@1 range:NSMakeRange(0, textString.length)];

上面兩句代碼可以簡寫為一句(為屬性字符串同時添加多個屬性)

 [attributedString addAttributes:@{NSFontAttributeName: [UIFont systemFontOfSize:14],NSKernAttributeName: @1} range:NSMakeRange(0, textString.length)];

3-修改標題文字屬性

通過字符串獲取范圍

 [attributedString addAttributes:@{NSFontAttributeName: [UIFont systemFontOfSize:26],NSForegroundColorAttributeName: [UIColor blueColor]} range:[textString rangeOfString:@"360云盤服務轉型公告"]];

4-獲取一大段文字范圍并修改屬性

通過前后字符串獲取大段字符的范圍

 // 此方法可以通過string獲得范圍進行修改
 NSRange startRange = [textString localizedStandardRangeOfString:@"我們即將采取以下措施:"];
 NSRange endRange = [textString localizedStandardRangeOfString:@"感謝您的一路相伴。"];
 [attributedString addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSUnionRange(startRange, endRange)];

5-為文本添加下劃線

 // 設置文本下劃線
 NSRange startRange1 = [textString localizedStandardRangeOfString:@"因此,"];
 NSRange endRange1 = [textString localizedStandardRangeOfString:@"之后轉型企業云服務。"];
 [attributedString addAttribute:NSUnderlineStyleAttributeName value:@1 range:NSUnionRange(startRange1, endRange1)];

6-為文本內文字添加描邊

 // 設置文本的描邊
 [attributedString addAttribute:NSStrokeWidthAttributeName value:@2.0 range:[textString rangeOfString:@"存儲傳播非法文件、侵權盜版牟利、傳播淫穢色情信息等違法犯罪行為"]];
 [attributedString addAttribute:NSStrokeColorAttributeName value:[UIColor brownColor] range:[textString rangeOfString:@"存儲傳播非法文件、侵權盜版牟利、傳播淫穢色情信息等違法犯罪行為"]];
 [attributedString addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:17] range:[textString rangeOfString:@"存儲傳播非法文件、侵權盜版牟利、傳播淫穢色情信息等違法犯罪行為"]];

7-為文本添加圖片附件

 // 插入圖片附件
 NSTextAttachment *imageAtta = [[NSTextAttachment alloc] init];
 imageAtta.bounds = CGRectMake(0, 0, 375, 180);
 imageAtta.image = [UIImage imageNamed:@"360"];
 NSAttributedString *attach = [NSAttributedString attributedStringWithAttachment:imageAtta];
 [attributedString insertAttributedString:attach atIndex:0];

8-為文本設置段落屬性

 // 段落樣式
 NSMutableParagraphStyle *style = [[NSMutableParagraphStyle alloc]init];
 // 行間距
 [style setLineSpacing:3];
 // 段落間距
 [style setParagraphSpacing:6];
 // 首行縮進
 [style setFirstLineHeadIndent:25];
 [attributedString addAttribute:NSParagraphStyleAttributeName value:style range:NSMakeRange(1, textString.length)];

9-添加網址鏈接

 // 網址鏈接
 NSRange urlRange = [textString rangeOfString:@"yunpan.#"];
 [attributedString addAttribute:NSLinkAttributeName value:[NSURL URLWithString:@"http://yunpan.#"] range:NSMakeRange(urlRange.location, 14)];
 [attributedString addAttribute:NSBackgroundColorAttributeName value:[UIColor greenColor] range:NSMakeRange(urlRange.location, 14)];

10-通過UITextViewDelegate代理方法,監聽URL和附件的點擊

 #pragma mark ----------UITextViewDelegate----------
- (BOOL)textView:(UITextView *)textView shouldInteractWithURL:(NSURL *)URL inRange:(NSRange)characterRange interaction:(UITextItemInteraction)interaction {
 NSLog(@"%@",URL);
 return YES;
}

- (BOOL)textView:(UITextView *)textView shouldInteractWithTextAttachment:(NSTextAttachment *)textAttachment inRange:(NSRange)characterRange interaction:(UITextItemInteraction)interaction {
 NSLog(@"%@",textAttachment.image);
 return YES;
}

補充:常用屬性字符串屬性

 // 字體
 NSFontAttributeName    // UIFont, default Helvetica(Neue) 12
 // 段落
 NSParagraphStyleAttributeName  // NSParagraphStyle, default defaultParagraphStyle
 // 文字顏色
 NSForegroundColorAttributeName // UIColor, default blackColor
 // 背景顏色
 NSBackgroundColorAttributeName // UIColor, default nil: no background
 // 描邊顏色
 NSStrokeColorAttributeName  // UIColor, default nil: same as foreground color
 // 描邊寬度
 NSStrokeWidthAttributeName  // NSNumber containing floating point value, default 0
 // 陰影
 NSShadowAttributeName    // NSShadow, default nil: no shadow
 // 附件
 NSAttachmentAttributeName   // NSTextAttachment, default nil
 // 鏈接URL
 NSLinkAttributeName    // NSURL (preferred) or NSString
 // 基線偏移量
 NSBaselineOffsetAttributeName  // NSNumber containing floating point value,default 0
 // 下劃線
 NSUnderlineColorAttributeName  // UIColor, default nil: same as foreground color

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,如果有疑問大家可以留言交流,謝謝大家對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

邹平县| 揭西县| 盐山县| 北安市| 岳阳市| 平昌县| 郁南县| 启东市| 黑水县| 泗洪县| 西贡区| 岳西县| 台前县| 家居| 长春市| 拉萨市| 锡林郭勒盟| 无为县| 招远市| 永川市| 隆昌县| 昂仁县| 都江堰市| 红原县| 韩城市| 平阴县| 宣城市| 武义县| 保定市| 白水县| 钟山县| 丰县| 根河市| 民乐县| 通城县| 南京市| 福海县| 汝城县| 建宁县| 甘泉县| 宁河县|