空 NSWindow 表
我正在开发一个 OSX 应用程序,基本上有 2 个不同的窗口:一个主窗口和另一个窗口在另一个窗口之上显示为一张纸,看起来像这样: http://cl.ly/0c0l0d0q3i2y1Y3y2b0b)
我正在尝试使用打开它以下代码:
BookWindow *bookWindow = [[BookWindow alloc] init];
[NSApp beginSheet:installWindow modalForWindow:window modalDelegate:nil didEndSelector:nil contextInfo:nil];
它按需要显示,但它是空的...... 有什么提示吗?
谢谢!
I'm working on an OSX application with basically 2 differents windows : a main one and another window displayed as a sheet on top of the other one It looks like this : http://cl.ly/0c0l0d0q3i2y1Y3y2b0b)
I'm trying to open it using the following code :
BookWindow *bookWindow = [[BookWindow alloc] init];
[NSApp beginSheet:installWindow modalForWindow:window modalDelegate:nil didEndSelector:nil contextInfo:nil];
It show up as wanted, but it's empty...
Any hints?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否在 Interface Builder 中取消选中 installWindow 窗口元素的“启动时可见”属性?
Did you uncheck the "Visible At Launch" attribute for installWindow's window element in Interface Builder?