Показать изображение в NSTableView - PullRequest
0 голосов
/ 19 сентября 2011

Я создаю таблицу и использую NSDictionaryController.
Мои данные взяты из case.dict файла
Я использую этот код:

@interface MyClass : NSWindowController{

    IBOutlet NSTableView *tableView;
    IBOutlet NSDictionaryController *dictController;
    IBOutlet NSArrayController *peopleList;
    NSDictionary *currentPerson;
}

@property (retain) NSDictionary *currentPerson;

файл MyClass.m

- (void)windowDidLoad
{
    [super windowDidLoad];

    NSBundle *bundle = [NSBundle mainBundle];
    NSString *path = [bundle pathForResource: @"case" ofType: @"dict"];
    NSArray *listFromFile = [NSArray arrayWithContentsOfFile: path];

    [tableView setSortDescriptors:[NSArray arrayWithObject:[[[NSSortDescriptor alloc] initWithKey:@"icon" ascending:YES] autorelease]]];

    [peopleList addObserver:self forKeyPath:@"selectionIndexes" options:NSKeyValueObservingOptionNew context:nil];

 if (listFromFile != nil)
{
    [peopleList addObjects:listFromFile];
}
[peopleList setSelectionIndex:0];

[dictController bind:NSContentDictionaryBinding toObject:self withKeyPath:@"currentPerson" options:nil];

}

Работает нормально, и таблица дает мне имена изображений, которые хранятся в файле case.dict в index 0(ZERO).
Теперь кто-нибудь может объяснить мне, как я получаю все изображения, но не их имена в таблице?
Я новичок в разработке какао.
Любая помощь будет оценена .. !!

РЕДАКТИРОВАТЬ: Если я хочу использовать что-то вроде

if (listFromFile != nil)
{
    [peopleList addObjects:[NSImage ImageNAmed:listFromFile];
}

тогда что мне делать?

Заранее спасибо .. !!


Я не могу найти решение этой проблемы.
Может кто-нибудь, пожалуйста, помогите мне в этом ??

У меня в столбце таблицы драже NSImageCell, а также привязка с NSArrayController.
Когда я запускаю приложение, оно показывает пустую таблицу без моего изображения и замораживания. Я даже не могу закрыть его.
enter image description here

Это говорит что-то вроде этого

2011-09-20 16:36:08.647 dictTable[1141:707] NSImageCell's object value must be an NSImage.
2011-09-20 16:36:08.651 dictTable[1141:707] (
0   CoreFoundation                      0x00007fff92984986 __exceptionPreprocess + 198
1   libobjc.A.dylib                     0x00007fff8eb4fd5e objc_exception_throw + 43
2   CoreFoundation                      0x00007fff929847ba +[NSException raise:format:arguments:] + 106
3   CoreFoundation                      0x00007fff92984744 +[NSException raise:format:] + 116
4   AppKit                              0x00007fff9890e051 -[NSImageCell setObjectValue:] + 109
5   AppKit                              0x00007fff98a5f261 -[NSValueBinder _adjustObject:mode:observedController:observedKeyPath:context:editableState:adjustState:] + 901
6   AppKit                              0x00007fff98ea7aee -[NSValueBinder updateTableColumnDataCell:forDisplayAtIndex:] + 145
7   AppKit                              0x00007fff98ee730d -[_NSBindingAdaptor tableColumn:willDisplayCell:row:] + 112
8   AppKit                              0x00007fff9890d948 -[NSTableView preparedCellAtColumn:row:] + 654
9   AppKit                              0x00007fff9891e787 -[NSTableView _drawContentsAtRow:column:withCellFrame:] + 42
10  AppKit                              0x00007fff9891ccbe -[NSTableView drawRow:clipRect:] + 1647
11  AppKit                              0x00007fff9891c49b -[NSTableView drawRowIndexes:clipRect:] + 565
12  AppKit                              0x00007fff9891a6f3 -[NSTableView drawRect:] + 1390
13  AppKit                              0x00007fff98881768 -[NSView _drawRect:clip:] + 3758
14  AppKit                              0x00007fff988af131 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1583
15  AppKit                              0x00007fff988af55d -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2651
16  AppKit                              0x00007fff9887ed46 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 1032
17  AppKit                              0x00007fff9887fffb -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 5821
18  AppKit                              0x00007fff9887fffb -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 5821
19  AppKit                              0x00007fff9887fffb -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 5821
20  AppKit                              0x00007fff9887e23c -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 270
21  AppKit                              0x00007fff9887964a -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4755
22  AppKit                              0x00007fff98872093 -[NSView displayIfNeeded] + 1676
23  AppKit                              0x00007fff988717d3 _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 648
24  CoreFoundation                      0x00007fff92944647 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23

Это мой файл case.dict
enter image description here

Кто-нибудь, пожалуйста, помогите мне в этом.

1 Ответ

1 голос
/ 19 сентября 2011

Обычно это работает так: вам нужно перетащить NSImageCell из библиотеки в столбец таблицы, в котором вы хотите отобразить изображение, и связать его свойство value с атрибутом изображения объекта вашего контроллера.

Надеюсьэто помогает!

...