如何为Arc设置动画?

时间:2012-03-28 06:59:12

标签: iphone xcode ipad ios5

  

可能重复:
  Arc / Circle animation in iphone

正在编写代码以创建Arc。

UIBezierPath *firstCircle = [UIBezierPath bezierPath];
    [firstCircle addArcWithCenter:CGPointMake(0, 500) radius:150 startAngle:90 endAngle:180 clockwise:NO];
    firstCircle.lineWidth = 100;
    [firstCircle closePath];
    [[UIColor blackColor]setStroke];
    [firstCircle stroke];

我如何设置此弧的动画?

0 个答案:

没有答案