gpt4 book ai didi

objective-c - NSWindow 的动画 setContent

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

过去,我已经使用以下代码成功淡入 NSWindow;

if (![statusWindow isVisible])
{
statusWindow.alphaValue = 0.0;
[statusWindow.animator setAlphaValue:1.0];
}

CAAnimation *anim = [CABasicAnimation animation];
[anim setDelegate:self];
[statusWindow setAnimations:[NSDictionary dictionaryWithObject:anim forKey:@"alphaValue"]];
[statusWindow makeKeyAndOrderFront:self];

对于我当前的项目,我正在尝试制作类似于 Photo Booth 中的闪光灯。我创建了一个白色 NSPanel,并计划将 NSWindow 的内容设置到面板,然后快速将其设置回来。

是否可以使用漂亮的淡入淡出效果来设置 NSWindow 的 contentView?

P.S - 如果您知道如何实现 Flash 有更简单的方法,请告诉我!

提前致谢,瑞奇。

最佳答案

为什么要使用另一个窗口?看起来您已经在尝试使用 CoreAnimation,那么为什么不直接向现有 View 添加一个白色 CALayer 并为其不透明度设置动画呢?

关于objective-c - NSWindow 的动画 setContent,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2260336/

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