PYObjC NSWindow 是 NoneType 吗?
window = NSApplication.sharedApplication().mainWindow()
window.contentView().addSubview_(chart_view)
该窗口是在另一个部分制作的,看起来不错,但我得到了这个:
: “NoneType”对象没有属性 '内容视图'
有谁知道为什么它认为窗口是“NoneType”?谢谢。
window = NSApplication.sharedApplication().mainWindow()
window.contentView().addSubview_(chart_view)
The window was made in another section and appears fine but I get this:
:
'NoneType' object has no attribute
'contentView'
Does anyone know why it thinks the window is "NoneType"? Thankyou.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来
mainWindow()
返回None
,这表明没有活动窗口或类似的东西。It looks like
mainWindow()
is returningNone
, which suggests that there is no active window or something like that.您是否记得连接 .xib 中的
window
插座?Did you remember to connect the
window
outlet in the .xib?