CAlayer层的属性一、position和anchorPoint1.简单介绍CALayer有2个非常重要的属性:position和anchorPoint@property CGPoint position;用来设置CALayer在父层中的位置以父层的左上角为原点(0, 0)@property CG...
分类:
移动开发 时间:
2015-06-04 22:22:47
阅读次数:
241
关于图层的几个坐标系。
对于ios来说,坐标系的(0,0)点在左上角,就是越往下,Y值越大。越往右,X值越大。
一个图层的frame,它是position,bounds,anchorPoint和transform属性的一部分。
设置一个新的frame将会相应的改变图层的position和bounds,但是frame本身并没有保存。
position:是一个CGP...
分类:
移动开发 时间:
2015-05-15 17:48:53
阅读次数:
197
一、position和anchorPoint1.简单介绍CALayer有2个非常重要的属性:position和anchorPoint@property CGPoint position;用来设置CALayer在父层中的位置以父层的左上角为原点(0, 0)@property CGPoint ancho...
分类:
移动开发 时间:
2015-05-03 18:58:11
阅读次数:
142
一、position和anchorPoint1.简单介绍CALayer有2个非常重要的属性:position和anchorPoint@property CGPoint position;用来设置CALayer在父层中的位置以父层的左上角为原点(0, 0)@property CGPoint ancho...
分类:
其他好文 时间:
2015-04-12 22:44:16
阅读次数:
152
下面学习一下图层的anchorPoint,position属性在ViewDidLoad中self.View添加View1,在View1中添加图层calayer self.view1=[[UIView alloc]init]; self.view1.backgroundColor=[UIColo...
分类:
其他好文 时间:
2015-04-10 15:27:31
阅读次数:
167
objc.io 学习 摘自原处修改对层的属性详细了解可见这里@interface ClockFace : CAShapeLayer@property (nonatomic, strong) NSDate *time;@end@interface ClockFace ()@property (nona...
分类:
其他好文 时间:
2015-03-31 21:40:58
阅读次数:
145
CALayer有2个非常重要的属性:position和anchorPoint@propertyCGPointposition;用来设置CALayer在父层中的位置以父层的左上角为原点(0, 0)@propertyCGPointanchorPoint;称为“定位点”、“锚点”决定着CALayer身上的...
分类:
其他好文 时间:
2015-03-15 13:41:49
阅读次数:
91
引言相信初接触到CALayer的人都会遇到以下几个问题:为什么修改anchorPoint会移动layer的位置?CALayer的position点是哪一点呢?anchorPoint与position有什么关系?我也迷惑过,找过网上的教程,大部分都是复制粘贴的,有些是翻译的文章但很有问题,看得似懂非懂...
分类:
其他好文 时间:
2015-03-13 12:29:44
阅读次数:
127
这两天看了下锚点的概念。 /** * Sets the anchor point in percent. * * anchorPoint is the point around which all transformations and positioning manipulations t...
分类:
其他好文 时间:
2015-03-10 11:53:40
阅读次数:
128
在Quartz中如何设置旋转点?12UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"bg.png"]]; imageView.layer.anchorPoint = CGPointMa...
分类:
其他好文 时间:
2015-03-01 17:02:56
阅读次数:
143