万物归根,UIView 和 CALayer都是的老祖宗都是NSObjet。
1: UIView的继承结构为: UIResponder : NSObject。
可以看出UIView的直接父类为UIResponder 类
UIResponder是用来响应事件的,也就是为什么UIView可以响应用户事件。
2:CALayer的继承结构为: NSObject。
直接从 NSObject继承,因为缺少了UIResponder类,所以CALayer悲催的不能响应任何用户事件。
CALayer定义了position、size、transform、animations 等基本属性。
(2)所属框架
1:UIView是在 /System/Library/Frameworks/UIKit.framework中定义的。
这个又是做什么的呢?
UIKit主要是用来构建用户界面,并且是可以响应事件的(得意与UIView的父类UIResponder,至于UIResponderd的实现原理不是这次分析的目的,在此不做过多的解释)
在这里思考一个问题UIView既然是构建用户界面的,那他是通过什么方式绘制这些图片、文字之类的信息的呢?
Ios中的2D图像绘制都是通过QuartzCore.framework实现的。难道是通过QuartzCore.framework实现的?那又是通过什么方式和QuartzCore.framework联系起来的呢??我们一会再看。
2:CALayer是在/System/Library/Frameworks/QuartzCore.framework定义的。而且CALayer作为一个低级的,可以承载绘制内容的底层对象出现在该框架中。
现在比较一下uiview和calayer都可以显示图片文字等信息。难道apple提供了,两套绘图机制吗?不会。
UIView相比CALayer最大区别是UIView可以响应用户事件,而CALayer不可以。
UIView侧重于对显示内容的管理,CALayer侧重于对内容的绘制。
大家都知道QuartzCore是IOS中提供图像绘制的基础库。并且CALayer是定义该框架中。难道UIView的底层实现是CALayer??
官方做出了明确的解释:
Displaying Layers in Views
Core Animation doesn't provide a means for actually displaying layers in a window, they must be hosted by a view. When paired with a view, the view must provide event-handling for the underlying layers, while the layers provide display of the content.
The view system in iOS is built directly on top of Core Animation layers. Every instance of UIView automatically creates an instance of a CALayer class and sets it as the value of the view’s layer property. You can add sublayers to the view’s layer as needed.
On Mac OS X you must configure an NSView instance in such a way that it can host a layer.
由此可见UIView是基于CALayer的高层封装。The view system in iOS is built directly on top of Core Animation layers.
UIView 的方法:
layerClass - Implement this method only if you want your view to use a different Core Animation layer for its backing store. For example, if you are using OpenGL ES to do your drawing, you would want to override this method and return the CAEAGLLayer class.
该方法保留了UIView的本质。即对UIView所管理的内容,任何显示也是受到CALayer的影响的。
(3)相似支持
1:相似的树形结构
2:显示内容绘制方式
3: 布局约束
(4) UIView 是什么,做什么
UIView是用来显示内容的,可以处理用户事件
(5)CALayer是什么,做什么
CALayer是用来绘制内容的,对内容进行动画处理依赖与UIView来进行显示,不能处理用户事件。
(6)为何有两套结构
并不是两套体系,UIView和CALayer是相互依赖的关系。UIView依赖与calayer提供的内容,CALayer依赖uivew提供的容器来显示绘制的内容。归根到底CALayer是这一切的基础,如果没有CALayer,UIView自身也不会存在,UIView是一个特殊的CALayer实现,添加了响应事件的能力。
(7)两者之间的关系
发之于肤,血之于肉,灵之于魄,男人之于肾的关系。依存的关系
结论:
UIView来自CALayer,高于CALayer,是CALayer高层实现与封装。UIView的所有特性来源于CALayer支持。
文章持续更新中、希望对各位有所帮助、有问题可留言 大家共同学习.