0
我創建了顯示圖像的自定義NSView。
我已經在Inspector視圖中創建了一個屬性,並綁定到File's Owner。Interface Builder Plugin負載上的圖像檢查器屬性問題
一切工作正常運行時圖像更改。 但是,當我保存並加載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。