gpt4 book ai didi

objective-c - 通过 NSBezierPath 动画 NSView

转载 作者:行者123 更新时间:2023-12-03 17:12:19 26 4
gpt4 key购买 nike

我有一些 NSBezierPath 和一些 NSView。我想为这个 NSView 设置动画并使用 NEBezierPath 作为动画路径。在 IOS 上使用 UIBezierPath 的路径创建 CAKeyframeAnimation 对我来说效果很好,但对于 OSX 来说并不完全相同。

代码如下:

 self.headView = [[NSView alloc] initWithFrame:NSMakeRect(100, 100, 50, 50)];
[self.headView setWantsLayer:YES];
[self.headView.layer setBackgroundColor:[NSColor redColor].CGColor];

[self.contentView addSubview:self.headView];

NSBezierPath *path = [NSBezierPath bezierPath];
[path moveToPoint:pathStart];
[path curveToPoint:endPoint controlPoint1:[pointValue pointValue] controlPoint2:[pointValue pointValue]];

[path setLineWidth:3.0];
[[NSColor whiteColor] set];
[path stroke];

CAKeyframeAnimation *posAnim = [CAKeyframeAnimation animationWithKeyPath:@"position"];
posAnim.path = [path quartsPath];
posAnim.duration = 1.0;
posAnim.calculationMode = kCAAnimationLinear;
[self.headView.layer addAnimation:posAnim forKey:@"posAnim"];

将 NSBezierPath 转换为 CGPathRef 是从那里开始的:https://developer.apple.com/library/mac/documentation/cocoa/Conceptual/CocoaDrawingGuide/Paths/Paths.html#//apple_ref/doc/uid/TP40003290-CH206-SW2

但它根本没有动画,这是视频:http://d.pr/v/glqQ

我不明白问题出在哪里......

附注我更喜欢关键帧动画,因为我想在后面添加一些弹跳效果。

最佳答案

确保 headView 的 super View 也有一个有效的层。试试这个:

self.contentView.wantsLayer = YES;

关于objective-c - 通过 NSBezierPath 动画 NSView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19519767/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com