NSView改变属性动画类型
我有一个 NSButton
,当我调用 [button setHidden: NO];
时,我想为它设置动画。但是,我不想要默认的淡入淡出动画,我会就像从左滑动的动画一样。
我确信它没有那么复杂,但我正在努力在文档中找到正确的位置。有什么建议吗?
I have an NSButton
that I'd like to animate when I call [button setHidden: NO];
However, I don't want the default fade animation, I'd like a slide-from-left animation instead.
I'm sure it's not that complicated, but I'm struggling to find the right location in the docs. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该通过动画师代理来更改框架。
You should change the frame via the animator proxy.
看起来正确的答案是向图层添加自定义动画,然后只需设置属性,而不是使用属性的默认动画器:
仍然不是 100% 清楚 Mac OS X 上
kCATransitionFade< 之间的区别/code> 和
kCATransitionReveal
。Looks like the correct answer to add a custom animation to the layer, and then just set the property, instead of using the default animator for the property:
Still not 100% clear what the difference is on Mac OS X between
kCATransitionFade
andkCATransitionReveal
.