interims update

This commit is contained in:
michael starke
2012-07-22 23:28:44 +02:00
parent 5687494582
commit 957b91cceb
9 changed files with 353 additions and 781 deletions

View File

@@ -7,14 +7,15 @@
//
#import "MPOutlineDataSource.h"
#import "MPDatabaseDocument.h"
@implementation MPOutlineDataSource
- (NSInteger)outlineView:(NSOutlineView *)outlineView numberOfChildrenOfItem:(id)item {
return 10;
return 1;
}
- (id)outlineView:(NSOutlineView *)outlineView child:(NSInteger)index ofItem:(id)item {
return nil;
return @"Super";
}
- (BOOL)outlineView:(NSOutlineView *)outlineView isItemExpandable:(id)item {
return YES;