锚点ios出现在少数地方,多数用在动画。
今天看了一部电影,以上所有关于锚,两年前锚这个概念看cocos2d当被接触的基本概念,当时我没怎么看,今天看了,刚刚好学习。
阅读blog,它是关于锚,像:
cocos2d里採用OpenGL ES坐标系。坐标原点在屏幕左下角。
而ios採用的是Quartz 2D坐标系,坐标原点在屏幕左上角。
在cocos2d和ios中分别把视图的坐标点设为(10,10),结果例如以下:
那么什么是锚点呢?以下以一个样例来说明:
比方要创建下面两个视图,蓝色视图左上角在坐标(5,4)处。而橙色视图右边和蓝色视图对齐,有一半的高度处于蓝色视图外面。
依照ios标准的创建视图的写法能够这样写代码:
UIView *blueView = [[UIView alloc] initWithFrame:CGRectMake(5, 4, W, H)];
blueView.backgroundColor = [UIColor blueColor];
[self.view addSubview:blueView];
UIView *orangeView = [[UIView alloc] initWithFrame:CGRectMake(W-w, H-h/2, w, h)];
orangeView.backgroundColor = [UIColor orangeColor];
[blueView addSubview:orangeView];
能够看到创建视图时就要计算视图左上角的坐标,很麻烦。
而使用了锚点的代码能够这样写:
- UIView *blueView = [[UIView alloc] initWithSize:CGSizeMake(W, H)];
- [blueView setPosition:CGPointMake(5, 4) atAnchorPoint:CGPointMake(0, 0)];
- blueView.backgroundColor = [UIColor blueColor];
- [self.view addSubview:blueView];
- UIView *orangeView = [[UIView alloc] initWithSize:CGSizeMake(w, h)];
- [orangeView setPosition:CGPointMake(W, H) atAnchorPoint:CGPointMake(1, 0.5)];
- orangeView.backgroundColor = [UIColor orangeColor];
- [blueView addSubview:orangeView];
就拿上面这个样例分析一下吧:
把鸟瞰图蓝色view的左边点(W,H)作为自身的锚点(1,0.5)【注意:锚点是在自身上找,这个点一一映射的有一个父view的坐标,能够通过这两个值来计算子视图的view.frame.origin】.
好好理解上句话,锚点的坐标范围例如以下:
这是在Quartz 2D坐标系中得锚点。
以下看一下代码中把父视图的点作为自身锚点的方法。
- (void)setPosition:(CGPoint)point atAnchorPoint:(CGPoint)anchorPoint{ CGFloat x = point.x - anchorPoint.x * self.width; CGFloat y = point.y - anchorPoint.y * self.height; [self setOrigin:CGPointMake(x, y)];}
版权声明:本文博客原创文章,博客,未经同意,不得转载。