NSWindows' setFrame:display:animate: 不起作用,setFrame:display: 起作用
我尝试在 NSWindow 上调用 setFrame:display:animate:
,但没有执行任何操作,但如果我在同一窗口上调用 setFrame:display:
,它就会起作用。
我需要做其他事情才能启用动画调整大小吗?
PS:在C++中,如果我想提及我编写的特定类的方法,例如: NSWindow::setFrame()
(不仅在代码中,而且在帖子中引用它)是否有这样的Objective-C 中的约定? [NSWindow setFrame:display:animate:]
?
I try to call setFrame:display:animate:
on my NSWindow and doesn't do anything, but if I call setFrame:display:
on the same window, it works.
Do I have to do something else to enable resizing with animation?
PS: In C++, if I want to mention a specific class' method I write, for example: NSWindow::setFrame()
(not only in code but to refer to it in posts) is there such a convention in Objective-C? [NSWindow setFrame:display:animate:]
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,您可以只使用核心动画,如
[[NSWindow animator] setFrame: display:];
Well, you could just using Core Animation, as in
[[NSWindow animator] setFrame: display:];