您能否帮助我找到一种正确的方法来围绕this这样的图像制作动画渐变边框?

我有矢量化图像(Adobe Illustrator,EPS等)。因此,我想制作一个围绕物体旋转的边框。

我应该寻找什么方向?

最佳答案

检查此one可以帮助我,我认为您可以使用相同的逻辑制作动画。

通过使用shape-Layer:

 [shapeLayer setBounds:shapeRect];
    [shapeLayer setPosition:CGPointMake(160.0f, 140.0f)];
    [shapeLayer setFillColor:[[UIColor clearColor] CGColor]];
    [shapeLayer setStrokeColor:[[UIColor blackColor] CGColor]];
    [shapeLayer setLineWidth:1.0f];
    [shapeLayer setLineJoin:kCALineJoinRound];

关于ios - 如何在矢量化图像周围制作动画渐变边框(适用于iPad的Objective-C)?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16009211/

10-10 14:21