【发布时间】:2016-09-26 18:30:25
【问题描述】:
我有以下代码(基于this 答案)来创建一个“可变形”圆形 方形。
在 iPhone 上运行良好:
但在 iPad 上不太好(运行相同版本的 iOS - 10):
代码是:
-(UIBezierPath*)circlePathWithCenter:(CGPoint)center andRadius:(CGFloat)radius {
UIBezierPath *circlePath = [UIBezierPath bezierPath];
[circlePath addArcWithCenter:center radius:radius startAngle:-M_PI endAngle:-M_PI/2 clockwise:YES];
[circlePath addArcWithCenter:center radius:radius startAngle:-M_PI/2 endAngle:0 clockwise:YES];
[circlePath addArcWithCenter:center radius:radius startAngle:0 endAngle:M_PI/2 clockwise:YES];
[circlePath addArcWithCenter:center radius:radius startAngle:M_PI/2 endAngle:M_PI clockwise:YES];
[circlePath closePath];
NSLog(@"%@", [circlePath debugDescription]);
return circlePath;
}
- (UIBezierPath *)squarePathWithCenter:(CGPoint)center andSize:(CGFloat)size
{
CGFloat startX = center.x-size/2;
CGFloat startY = center.y-size/2;
UIBezierPath *squarePath = [UIBezierPath bezierPath];
[squarePath moveToPoint:CGPointMake(startX, startY)];
[squarePath addLineToPoint:squarePath.currentPoint];
[squarePath addLineToPoint:CGPointMake(startX+size, startY)];
[squarePath addLineToPoint:squarePath.currentPoint];
[squarePath addLineToPoint:CGPointMake(startX+size, startY+size)];
[squarePath addLineToPoint:squarePath.currentPoint];
[squarePath addLineToPoint:CGPointMake(startX, startY+size)];
[squarePath addLineToPoint:squarePath.currentPoint];
[squarePath closePath];
NSLog(@"%@", [squarePath debugDescription]);
return squarePath;
}
动画代码是:
CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"path"];
animation.duration = 0.5;
animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
animation.fromValue = (__bridge id)(_innerShape.path);
animation.toValue = (__bridge id)(_innerSquare.CGPath);
_innerShape.path = _innerSquare.CGPath;
[_innerShape addAnimation:animation forKey:@"animatePath"];
仔细检查路径后,我注意到 iPad 版本上有更多“曲线”点(运行相同的代码)。从上一期的讨论来看,我认为控制点的数量需要相同才能顺利过渡。
设备之间的预期点数是否不同?有没有更可靠的方法来实现可变形的形状?
圆的iPad调试:
<UIBezierPath: 0x6c4f0d0; <MoveTo {13.5, 45.000004}>,
<CurveTo {44.999996, 13.5} {13.499998, 27.603035} {27.603027, 13.500002}>,
<CurveTo {45, 13.5} {44.999996, 13.5} {45, 13.5}>,
<LineTo {45, 13.5}>,
<CurveTo {76.5, 45} {62.396969, 13.499999} {76.5, 27.603031}>,
<CurveTo {76.5, 45} {76.5, 45} {76.5, 45}>,
<LineTo {76.5, 45}>,
<CurveTo {45, 76.5} {76.5, 62.396969} {62.396969, 76.5}>,
<CurveTo {45, 76.5} {45, 76.5} {45, 76.5}>,
<LineTo {45, 76.5}>,
<CurveTo {13.5, 45} {27.603031, 76.5} {13.499999, 62.396969}>,
<CurveTo {13.5, 44.999996} {13.5, 45} {13.5, 44.999996}>,
<Close>
iPhone 版本:
<UIBezierPath: 0x6180000b24e0; <MoveTo {13.5, 44.999999999999993}>,
<CurveTo {45, 13.5} {13.500000000000002, 27.603030380330004} {27.603030380330011, 13.499999999999998}>,
<LineTo {45, 13.5}>,
<CurveTo {76.5, 45} {62.396969619669989, 13.500000000000002} {76.5, 27.603030380330011}>,
<LineTo {76.5, 45}>,
<CurveTo {45, 76.5} {76.5, 62.396969619669989} {62.396969619669989, 76.5}>,
<LineTo {45, 76.5}>,
<CurveTo {13.5, 45.000000000000007} {27.603030380330011, 76.5} {13.500000000000002, 62.396969619669996}>,
<Close>
两个正方形:
<UIBezierPath: 0x6000000b0f80; <MoveTo {29.25, 29.25}>,
<LineTo {29.25, 29.25}>,
<LineTo {60.75, 29.25}>,
<LineTo {60.75, 29.25}>,
<LineTo {60.75, 60.75}>,
<LineTo {60.75, 60.75}>,
<LineTo {29.25, 60.75}>,
<LineTo {29.25, 60.75}>,
<Close>
【问题讨论】:
-
你为什么要打所有
[squarePath addLineToPoint:squarePath.currentPoint]电话?如果两条贝塞尔路径的段数不同,则在两条不同的贝塞尔路径之间制作动画可能会产生奇怪的中间形状。而那些使用currentPoint的addLineToPoint似乎会在路径中添加不必要的点。此外,我会将这些圆弧值移动 π/4,以便它们与正方形的角更好地对齐。 -
好问题!我链接到的帖子提到 arcWithCenter 是我认为添加了两个部分?所以最初的解决方法是在正方形中添加更多内容。
标签: ios objective-c iphone ipad uibezierpath