在UIView中基于动画CGPoint.x绘制一条线

时间:2011-12-01 20:23:21

标签: uiview core-animation

我试图根据“View A”的子视图中心在UIView中绘制一条垂直线(称之为View A)。

子视图动画效果很好,但是线条图没有动画。它碰到了最后的位置。

例如,如果子视图位于CGPoint(0,100)并且我想要动画到CGPoint(100,100)。 子视图按预期移动,但是,线条图并不只是在整个动画中出现在CGPoint(100,100)处。

当然在动画块中我正在调用[self setNeedsDisplay]

我使用的代码如下(pointView是上面提到的子视图):

CGPointView newCetner = CGPointMake(100,100);
[UIView animateWithDuration:.5 animations:^{                
 pointView.center = newCenter;
 [self setNeedsDisplay];
}];   
在drawRect方法中我有以下代码:

CGPathMoveToPoint(path, NULL, CGRectGetMidX(pointView.frame), pointView.center.y-100 );    
CGPathAddLineToPoint(path, NULL, CGRectGetMidX(pointView.frame), pointView.center.y+100 );    
CGContextAddPath(context, path);
CGContextStrokePath(context);    

我是如何根据动画块强制视图重绘的?

1 个答案:

答案 0 :(得分:0)

默认情况下,动画的工作方式是存储视图的开始和最终版本,并应用一些廉价的转换从一个移动到另一个。不使用drawRect:绘制视图的中间版本。

您可以通过将选项drawRect:传递给UIViewAnimationOptionAllowAnimatedContent来请求为animateWithDuration:delay:options:animations:completion:调用中间步骤。使用此选项时,请确保drawRect:速度很快,因为它会经常被调用。