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

时间:2010-10-28 11:16:39

标签: objective-c cocoa interface-builder nsimage ibplugin


我创建了一个显示图像的自定义NSView 我在Inspector视图中创建了一个属性,绑定到File的所有者。

在运行时图像更改中一切正常。 但是当我保存并加载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在运行时和从编码器初始化时工作正常。

我缺少什么?

Thans。

1 个答案:

答案 0 :(得分:0)