博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
《极客学院 --NSAttributedString 使用详解-4-UITextKit 简介》学习笔记(待处理)...
阅读量:6227 次
发布时间:2019-06-21

本文共 1931 字,大约阅读时间需要 6 分钟。

如果要在富文本中添加图片的话,用UITextKit才能实现。

什么是UITextKit:它就是处理富文本的框架。

什么时候使用UITextKit:比如要实现图文混搭的节目。

在gitHub中 可以下载一个关于UITextKit的Demo。

以下是ViewController中的类:

复制代码
1 #import "ViewController.h"  2 #import "ParagraphAttributes+Constructor.h"  3 #import "ExclusionView.h"  4 #import "BookTextView.h"  5  6 #define Width [UIScreen mainScreen].bounds.size.width 7 #define Height [UIScreen mainScreen].bounds.size.height 8  9 @interface ViewController ()
10 11 @property (strong, nonatomic) BookTextView *bookView;12 13 @end 14 15 @implementation ViewController16 17 - (void)viewDidLoad {18 [super viewDidLoad];19 20 21 // 读取文本 22 NSString *text = [NSString stringWithContentsOfFile:[NSBundle.mainBundle URLForResource:@"lorem" withExtension:@"txt"].path23 encoding:NSUTF8StringEncoding24 error:nil];25 26 27 // 初始化bookView 28 self.bookView = [[BookTextView alloc] initWithFrame:CGRectMake(10, 10, Width - 20, Height - 20)];29 self.bookView.textString = text;30 31 // 设置段落样式 32 self.bookView.paragraphAttributes = [ParagraphAttributes qingKeBengYue];33 34 // 设置富文本 35 self.bookView.attributes = @[[ConfigAttributedString foregroundColor:[[UIColor blackColor] colorWithAlphaComponent:0.75f]36 range:NSMakeRange(0, 9)],37 [ConfigAttributedString font:[UIFont fontWithName:QingKeBengYue size:22.f]38 range:NSMakeRange(0, 9)]];39 40 // 加载图片 41 ExclusionView *exclusionView = [[ExclusionView alloc] initWithFrame:CGRectMake(150.f, 195, 320, 150)];42 self.bookView.exclusionViews = @[exclusionView];43 UIImageView *imageView = [[UIImageView alloc] initWithFrame:exclusionView.bounds];44 imageView.image = [UIImage imageNamed:@"demo"];45 [exclusionView addSubview:imageView];46 47 48 // 构建view 49 [self.bookView buildWidgetView];50 [self.view addSubview:self.bookView];51 52 53 // 延时0.01s执行 54 [self performSelector:@selector(event)55 withObject:nil56 afterDelay:0.01];57 }58 59 - (void)event {60 [self.bookView moveToTextPercent:0.00];61 }62 63 @end
复制代码

转载地址:http://hlfna.baihongyu.com/

你可能感兴趣的文章
HTML5系列:HTML5表单
查看>>
团队编程项目作业2-爬虫豆瓣top250项目代码设计规范
查看>>
Oracle觸發器調用procedure寄信
查看>>
练习-为网页添加icon图标;为网页添加关键字/作者;超链接;input的type属性有哪些常用属性值-form表单...
查看>>
实验一
查看>>
单页数据多iOS预加载的方法
查看>>
acm计划(更新于2014.11.9)
查看>>
hdu3364 高斯消元1(开关控制灯,异或解的个数)
查看>>
Python网络编程1:套接字
查看>>
Complete Physics Platformer Kit 学习
查看>>
软件工程---删除重复数组
查看>>
ubuntu16 64 搭建lnmp环境
查看>>
数据结构中的图
查看>>
设计模式:结构型模式总结
查看>>
HDU 1260:Tickets(DP)
查看>>
Codeforces 1080C- Masha and two friends
查看>>
使用CRT定位内存泄漏
查看>>
异常的处理方式
查看>>
JavaScrip 数组/字典/循环
查看>>
C#Question:“XXX”的重载均与“System.Threading.WaitCallback”不匹配。
查看>>