Interface Builder 插件加载时图像检查器属性问题

发布于 2024-09-29 17:17:06 字数 565 浏览 5 评论 0原文


我创建了一个显示图像的自定义 NSView。
我在检查器视图中创建了一个属性,并绑定到文件的所有者。

在运行时图像更改中一切正常。 但是当我保存和加载 xib 文件时没有加载任何内容。

这是简化的代码:

IBDocument *document = [IBDocument documentForObject:self];
[self->defaultImage release];
self->defaultImage = [document documentImageNamed:aImage];
[self->defaultImage setName:aImage];
[self->defaultImage retain];

[document documentImageNamed:aImage] 在运行时返回一个 NSImage,但是当从文件加载时它返回 nil

尽管 NSImageWell 在运行时和以下情况下工作正常从编码器初始化。

我缺少什么?

谢谢。

i have created a custom NSView that displays an image.
i have created a property in Inspector view with binding to File's Owner.

Everything works fine in runtime image changing.
But nothing is loaded when i save and load xib file.

here is the simplified code:

IBDocument *document = [IBDocument documentForObject:self];
[self->defaultImage release];
self->defaultImage = [document documentImageNamed:aImage];
[self->defaultImage setName:aImage];
[self->defaultImage retain];

The [document documentImageNamed:aImage] returns an NSImage in runtime, but when loading from file it return nil

though the NSImageWell works fine in runtime and when initialized from coder.

What i'm missing?

Thans.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文