NSString *Str = [NSString stringWithFormat:@"參與喜中%@能量!",self.dic[@"backCoin"]];
// 建立一個富文字
NSMutableAttributedString * attriStr = [[NSMutableAttributedString alloc] initWithString:Str];
// 修改富文字中的不同文字的樣式
[attriStr addAttribute:NSForegroundColorAttributeName value:kAppThemeColor range:NSMakeRange(0,2)];
/**
新增圖片到指定的位置
*/
NSTextAttachment *attchImage = [[NSTextAttachment alloc] init];
// 表情圖片
attchImage.image = [UIImage imageWithData:[NSData dataWithContentsOfURL:urlofstr(self.dic[@"vgoodsImg"])]];
// 設定圖片大小
attchImage.bounds = CGRectMake(0, -8, 30, 30);
NSAttributedString *stringImage = [NSAttributedString attributedStringWithAttachment:attchImage];
[attriStr insertAttributedString:stringImage atIndex:2];
// 賦值
rightLabel.attributedText = attriStr;
常見的屬性及說明
NSFontAttributeName 字型
NSParagraphStyleAttributeName 段落格式
NSForegroundColorAttributeName 字型顏色
NSBackgroundColorAttributeName 背景顏色
NSStrikethroughStyleAttributeName 刪除線格式
NSUnderlineStyleAttributeName 下劃線格式
NSStrokeColorAttributeName 刪除線顏色
NSStrokeWidthAttributeName 刪除線寬度
NSShadowAttributeName 陰影
複製程式碼
iOS 富文字的應用(圖片與文字混編)
相關文章
- 富文字編輯器Quill(二)上傳圖片與視訊UI
- 日常筆記二:獲取富文字編輯器中圖片筆記
- iOS使用UITableView實現的富文字編輯器iOSUIView
- iOS 富文字屬性iOS
- js 如何提取富文字里的圖片路徑JS
- 富文字編譯器編譯
- 微信小程式 – 富文字圖片寬度自適應(正則)微信小程式
- 富文字編輯器CKeditor的配置和圖片上傳,看完不後悔
- 富文字編輯器初探
- Javascript富文字編輯器JavaScript
- VueQuillEditor富文字上傳圖片-非base64VueUI
- [Djangorestframework]-富文字編輯器的使用DjangoRESTFramework
- 線上富文字編輯器初探
- IM應用中如何計算富文字的高度
- 圖片裁剪-文字識別-文字新增
- 文字圖Tranformer在文字分類中的應用ORM文字分類
- ProseMirror - 模組化的富文字編輯框架ROS框架
- FCKeditor富文字編輯框的配置薦
- 如何免費識別圖片文字?圖片文字識別軟體怎麼用
- swift——富文字文字的簡單使用Swift
- iOS筆記之UILabel(富文字)iOS筆記UI
- SpringMVC整合富文字編輯器SpringMVC
- 分享 - 富文字編輯器 Froala Editor
- SSM使用UEditor富文字編輯器SSM
- UIButton圖片文字控制元件位置自定義(圖片居右文字居左、圖片居中文字居中、圖片居左文字消失等)UI控制元件
- Vue富文字帶圖片修改圖片大小自定義選擇項自定義字型Vue自定義字型
- 微信小程式圖文編輯元件開發(偽富文字編輯)微信小程式元件
- PHP 圖片、文字合成PHP
- 富文字編譯器UEditor+SSM的使用編譯SSM
- windows10截圖後怎麼編輯圖片文字_win10在截圖上編輯文字的方法WindowsWin10
- SwiftUI 簡明教程之文字與圖片SwiftUI
- ckeditor4.8 富文字編輯器的使用與填坑-PHPPHP
- 識別圖片文字轉換成word文字真的很難嗎?分享圖片轉文字的技巧
- 日常筆記一:擷取富文字編輯器中的文字內容筆記
- springboot thymeleaf 整合 百度富文字編輯器UEditor進行圖片上傳Spring Boot
- Eleditor移動端富文字編輯器
- 利用 javascript 實現富文字編輯器JavaScript
- Java 讀取Word文字框中的文字/圖片/表格Java