所以我实现了一个PXSourceList
数据源,它几乎是 AppleNSOutlineView
数据源示例的副本。
事情是这样的……
- (NSUInteger)sourceList:(PXSourceList*)sourceList numberOfChildrenOfItem:(id)item; {
if (item == nil) {
// item is nil so it's part of the very top hierarchy.
// return how many sections we need.
return 2;
}
else {
if ([item class] == [TSFileSystemItem class] ) {
return [item numberOfChildren];
// if item isn't nil and it's a TSFileSystemItem, then return it's children.
}
if ([item class] == [TSWorkspaceItem class]) {
return 2; // i don't know, random items.
}
else {
NSLog(@"this is a special object.");
}
}
}
- (BOOL)sourceList:(PXSourceList *)aSourceList isItemExpandable:(id)item {
if (item == nil) {
return YES;
}
else {
// if the number of children of the item is -1
BOOL gibberhook = ([item numberOfChildren] != -1);
return gibberhook;
}
}
-(id)sourceList:(PXSourceList *)aSourceList child:(NSUInteger)index ofItem:(id)item {
if (item == nil) {
return [TSFileSystemItem rootItem];
}
else {
return [(TSFileSystemItem *)item childAtIndex:index];
}
}
- (id)sourceList:(PXSourceList *)aSourceList objectValueForItem:(id)item {
if (item == nil) {
return @"/";
} else {
if (item == [TSFileSystemItem rootItem]) {
return PROJECT_FILES;
}
else {
return [item relativePath];
}
}
}
神秘TSFileSystemItem
来自这里:https ://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/OutlineView/Articles/UsingOutlineDataSource.html 。
所有这一切都很好,除了我想将我的源列表划分为多个部分(根单元格)。一个显示文件层次结构(检查),另一个...
那么另一个将包含一个NSMutableArray
我从其他部分添加项目的内容。听起来很复杂?更好的解释。单击具有文件层次结构的部分中的项目,并将其添加到其他部分。
我试图在 Apple 文档的帮助下解决这个问题,但我仍然找不到一种简单、高效、稳定的方法来使用我上面提到的功能制作 2 个部分。如果只是像配置数据源一样简单UITableView
...
任何人都可以帮助我吗?