NSView 中的 NSBezierPath 点动画

发布于 2024-12-22 08:35:02 字数 221 浏览 3 评论 0原文

我在 Cocoa 中构建了一个自定义控件,它是使用 NSBezierPath 绘制的,我希望它在状态更改时改变形状(未使用的状态 = 指向“看这里”的边缘,使用的状态 = 标准控制边缘)。

感觉就像我已经浏览了网络上所有提到的“NSBezierPath”和“动画”,但没有运气。

在我破解一些 NSTimers 并编写我自己的计时&之前路径点控件,有谁知道这是否可以使用核心动画或类似的?

I've built a custom control in Cocoa which is drawn using an NSBezierPath and I'd like it to change shape when it's state has changed (unused state = a pointed 'look here' edge, used state = standard control edge).

It feels like I've looked through every mention of "NSBezierPath" and "Animation" there is on the web but with no luck.

Before I crack out some NSTimers and write my own timing & path point controls, does anyone know if this is possible using Core Animation or similar?

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

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

发布评论

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

评论(1

一片旧的回忆 2024-12-29 08:35:02

You could use NSAnimation. Create your own NSAnimation subclass, and override setCurrentProgress method.
In that method, you can change your NSBezierPath size, shape or whatever you need, based on current animation progress. After that you can force a redraw in the view (via delegate, for instance) to re-display the path.

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