核心动画不起作用。物体消失

发布于 2024-12-10 05:14:12 字数 566 浏览 4 评论 0原文

[animationImageView setWantsLayer:YES];

CAKeyframeAnimation *keyframeAnimation = [CAKeyframeAnimation animationWithKeyPath:@"position"];    
keyframeAnimation.values = [animationsBindingsController valueForKeyPath:@"selection.controlPoints"];
keyframeAnimation.duration = 5;
[animationImageView.layer addAnimation:keyframeAnimation forKey:@"position"];
[pageContent addSubview:animationImageView];

AnimationImageViewNSImageView 的子类。

animationImageView 对象消失 5 秒(动画持续时间),然后突然出现在初始位置。

[animationImageView setWantsLayer:YES];

CAKeyframeAnimation *keyframeAnimation = [CAKeyframeAnimation animationWithKeyPath:@"position"];    
keyframeAnimation.values = [animationsBindingsController valueForKeyPath:@"selection.controlPoints"];
keyframeAnimation.duration = 5;
[animationImageView.layer addAnimation:keyframeAnimation forKey:@"position"];
[pageContent addSubview:animationImageView];

AnimationImageView is a subclass of NSImageView.

animationImageView object disappears for a 5 seconds (for a duration of animation), and suddenly it appears in init position.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

琴流音 2024-12-17 05:14:12

好吧,我没有子类化 NSImageView,而是子类化 CALayer(通过方法 setContents:你可以设置 NSImage)。核心动画完美运行!

Ok, Instead of subclassing NSImageView, I subclassed CALayer (by method setContents: you can set NSImage). Core Animation works perfectly!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文