我正在尝试在 UIBezierPath 动画的 addLineToPoint 完成后运行一些脚本。
这是我的一段代码
UIBezierPath *path = [UIBezierPath bezierPath];
CGRect pathRect = CGRectInset(self.animationLayer.bounds, 0.0f, 0.0f);
// define cgpoint
CGPoint number1 = CGPointMake(CGRectGetMinX(pathRect), CGRectGetMaxY(pathRect));
[path addLineToPoint: number1];
在这里我找到了 UIBezierClass 的参考,但我找不到任何指示动画 addLineToPoint 完成的指示符。提前致谢。 http://developer.apple.com/library/ios/#documentation/uikit/reference/UIBezierPath_class/Reference/Reference.html