Introduced Windowdelegation for Responder Chain handling

This commit is contained in:
michael starke
2013-02-12 11:12:15 +01:00
parent 5c0c6b7a51
commit 737ccf0ade
12 changed files with 878 additions and 184 deletions

View File

@@ -11,7 +11,7 @@
@implementation MPOutlineViewDelegate
- (NSView *)outlineView:(NSOutlineView *)outlineView viewForTableColumn:(NSTableColumn *)tableColumn item:(id)item {
NSTableCellView *view = [outlineView makeViewWithIdentifier:@"OutlineCell" owner:self];
NSTableCellView *view = [outlineView makeViewWithIdentifier:@"DataCell" owner:self];
[view.imageView setImage:[NSImage imageNamed:NSImageNameFolder]];
[view.textField setStringValue:@"Test"];
return view;