我正在尝试实现以下目标:用户点击一个视图,一个圆形视图弹出到它的左侧,其中包含一些图像内容。视图应该从触摸点开始动画到触摸视图外部和左侧的最后一帧。在动画过程中它应该是一个圆圈,增长到正确的位置和大小
一切都适用于下面的代码,只是在动画期间,圆形边界仅在左侧。就好像CALayer
形状正在滑入它的最后一帧。
它看起来有点像这样。
动画完成后,我按预期完成了整个循环。
CGFloat w = 300;
CGRect frame = CGRectMake(myX, myY, w, w);
CGPoint p = [touch locationInView:self.imageView];
CGRect initialFrame = CGRectMake(p.x, p.y, 0,0);
UIImageView *circle = [[UIImageView alloc] initWithFrame:frame];
circle.image = [UIImage imageNamed:@"china"];
circle.contentMode = UIViewContentModeScaleAspectFill;
circle.backgroundColor = [UIColor clearColor];
circle.layer.borderWidth = 1;
circle.layer.borderColor = [UIColor grayColor].CGColor;
circle.layer.masksToBounds = YES;
CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
CGRect maskRect = CGRectMake(0, 0, w, w);
CGMutablePathRef path = CGPathCreateMutable();
CGPathAddEllipseInRect(path, nil, maskRect);
maskLayer.path = path;
CGPathRelease(path);
circle.layer.mask = maskLayer;
circle.frame = initialFrame;
[self.imageView addSubview:circle];
[UIView animateWithDuration:1.0 animations:^{
circle.frame = frame;
}];
我试过只使用cornerRadius
的CALayer
,但这也不会产生令人满意的结果,因为半径也必须随框架大小而变化。