最近闲来无事,准备研究研究TextKit
.
TextKit
是ios7 新推出的技术,在Core Text
之上新增了多项功能,目的是为了让开发人员能够轻松的渲染和处理带属性的字符串
先来一发简单地 排除路径
- 排除路径:让文本沿着内嵌的图像
UIImageView
或者View
饶着排
- 要制定排除路径首先要创建一个排除区域的 贝塞尔曲线
UIBezierPath
。 - 然后把
textView
的textContainer
的属性exclusion
设置为一个排除区域数组
废话不多说 直接上代码
//设置贝塞尔曲线
UIBezierPath * circlePath=[UIBezierPath bezierPathWithOvalInRect:CGRectMake(50, 50, 100, 100)];
UIImageView * imageView=[[UIImageView alloc]initWithFrame:CGRectMake(50, 50, 100, 100)];
[imageView setImage:[UIImage imageNamed:@"ab"]];
[self.textView addSubview:imageView];
self.textView.textContainer.exclusionPath=@[circlePath]; //设定为排除区域
网友评论