我正在创建一个tableview并使用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
绑定了
当我运行应用程序时,它显示空表没有任何我的图像和freez。我甚至无法关闭它
它说的是这样的
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
这是我的个案.d文件
任何人都可以帮助我。
答案 0 :(得分:1)
通常它的工作原理如下 - 您必须将NSImageCell从Library拖到table列,在其中要显示图像,并将其value属性绑定到控制器对象的image属性。
希望这有帮助!