NSWindow setFrame 在 Lion 中不起作用?
我一直在 Cocoa 和 Lion 中为这个问题而自杀,想知道是否有人遇到过这个问题并(希望)找到解决方案。
我有一个非常简单的项目(代码可以在这里下载: http://cl.ly/2T0N2C1A3K1r2h1q0R1e )其中 NSWindowController 使用 NSWindow 上的 setFrameOrigin: 方法分配窗口的位置。
第一次运行时,效果很好,但是一旦用户移动窗口,就会退出并退出。重新启动应用程序,窗口将恢复其先前的位置,而不是使用 setFrameOrigin: 命令。
NSWindowController 已经禁用了级联和自动保存,因此它不应该发生。
另外,我在 Snow Leopard 上进行了测试,代码 100% 有效 - 这是仅 Lion 的问题。
有什么想法吗?
I've been killing myself over this issue in Cocoa and Lion and was wondering if anyone has come across this issue and (hopefully) found a solution.
I've got a very simple project (code can be downloaded here: http://cl.ly/2T0N2C1A3K1r2h1q0R1e ) where a NSWindowController assigns the position of a window using the setFrameOrigin: method on an NSWindow.
On first run this works A-OK, but once the user moves the window, quits & restarts the app the window restores it's previous location instead of employing the setFrameOrigin: command.
The NSWindowController already has cascade and autosave disabled so it shouldn't be happening.
Also, i've tested on Snow Leopard and the code works 100% - it's a Lion only issue.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是 Lion 的“用户界面保留”功能,该功能记录在 应用程序编程指南
简单的解决方案是取消选中窗口属性窗格中的“可恢复”。
That's Lion's "User Interface Preservation" feature, which is documented in the App Programming Guide
The simple solution is to uncheck "Restorable" in the window's attributes pane.