- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在使用 NSTreeController
填充 NSOUtlineView
。
NSTreeController
是一个 3 级层次 Controller (CBMovie、CBDisc 和 CBEpisode),但只有前 2 级显示在大纲 View 中。
所有对象的实现都是相同的:我已经实现了指定子对象、子对象数量以及对象是否为叶子的方法。为所有对象正确调用这些方法(对于那些未显示的对象,孙子:CBEpisode
)。
在大纲 View 中,前 2 级的所有内容都正确显示。但是永远不会显示孙子,我无法选择扩展他们的 parent 来看到他们。我只能看到 CBMovie 和 CBDiscs。
我想知道是否还缺少其他设置,关于节点在 NSTreeControllers 或 NSOutlineView 配置中可以扩展多深。
以下:在三个节点之一中实现。每个节点类都有不同的路径到它的 child 。这是在 -(NSArray*)children 方法中指定的(正确调用)。
-(NSArray*)children
{
return [[self Episodes] allObjects];
}
-(int)childrenCount
{
return [[self Episodes] count];
}
-(BOOL)isLeaf
{
return ![[self Episodes] count];
}
日志代码的输出。数据源 NSTreeController 似乎具有正确的结构。
CBMovie
CBDisc
CBEpisode
CBEpisode
CBMovie
CBDisc
CBDisc
CBDisc
CBDisc
CBMovie
CBDisc
CBEpisode
CBEpisode
这就是我填充 NSOutlineView(基于单元格)的方式。我不使用数据源方法,但我以编程方式绑定(bind)它。
NSMutableDictionary *bindingOptions = [[NSMutableDictionary alloc] initWithCapacity:2];
if (metadata.valueTransformer) {
[bindingOptions setObject:metadata.valueTransformer forKey:NSValueTransformerNameBindingOption];
}
[bindingOptions setObject:[NSNumber numberWithBool:NO] forKey:NSCreatesSortDescriptorBindingOption];
[bindingOptions setObject:[NSNumber numberWithBool:NO] forKey:NSRaisesForNotApplicableKeysBindingOption];
[newColumn bind:@"value" toObject:currentItemsArrayController withKeyPath:[NSString stringWithFormat:@"arrangedObjects.%@", metadata.columnBindingKeyPath] options:bindingOptions];
最佳答案
检查 NSTreeController
端
The NSTreeController is a 3 levels hierarchy controller, but only the first 2 levels are displayed in the outline view.
您是否确认所有三个级别都已加载到您的 NSTreeController
中?您可以通过使用以下扩展名将其内容记录到控制台来执行此操作。如果此代码产生的输出与您的大纲 View 中显示的相匹配,则问题可能出在 NSTreeController
端,而不是大纲 View 。
#import "NSTreeController+Logging.h"
@implementation NSTreeController (Logging)
// Make sure this is declared in the associated header file.
-(void)logWithBlock:(NSString * (^)(NSTreeNode *))block {
NSArray *topNodes = [self.arrangedObjects childNodes];
[self logNodes:topNodes withIndent:@"" usingBlock:block];
}
// For internal use only.
-(void)logNodes:(NSArray *)nodes
withIndent:(NSString *)indent
usingBlock:(NSString * (^)(NSTreeNode *))block {
for (NSTreeNode * each in nodes) {
NSLog(@"%@%@", indent, block(each));
NSString *newIndent = [NSString stringWithFormat:@" %@", indent];
[self logNodes:each.childNodes withIndent:newIndent usingBlock:block];
}
}
@end
上面的代码不用调整,只需要用自定义的block调用即可:
-(void)logIt {
[self.treeController logWithBlock:^NSString *(NSTreeNode * node) {
// This will be called for every node in the tree. This implementation
// will see the object's description logged to the console - you may
// want to do something more elaborate.
NSString *description = [[node representedObject] description];
return description;
}];
}
检查 NSOutlineView
端
如果所有数据似乎都已正确加载到 NSTreeController
中,您可以查看如何填充 NSOutlineView
。委托(delegate)方法 -[NSOutlineViewDelegate outlineView:viewForTableColumn:item]
是一个很好的起点。 item
参数是 NSTreeNode
实例,因此,在返回相关 View 之前,您可以查看此节点并确保它按预期运行。在您的情况下,您应该仔细检查代表 CBDisc
对象的 item
对象的属性。 (您可能需要单击披露按钮才能为相关对象触发此方法。)
-(NSView *)outlineView:(NSOutlineView *)outlineView
viewForTableColumn:(NSTableColumn *)tableColumn
item:(id)item {
NSTreeNode *node = (NSTreeNode *)item;
NSManagedObject *representedObject = (NSManagedObject *)node.representedObject;
// Query the node
NSLog(@"%@ <%@>", representedObject.description, [representedObject class]);
NSLog(@" node is a leafNode: %@", node.isLeaf ? @"YES" : @"NO");
NSLog(@" node has child-count of: %lu", (unsigned long)node.childNodes.count);
// Query the NSManagedObject
// your stuff here...
// This is app-specific - you'll probably need to change the identifier.
return [outlineView makeViewWithIdentifier:@"StandardTableCellView" owner:self];
}
关于objective-c - NSOutlineView 仅显示 NSTreeController 层次结构的前 2 层,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30123043/
我目前正在尝试基于哈希表构建字典。逻辑是:有一个名为 HashTable 的结构,其中包含以下内容: HashFunc HashFunc; PrintFunc PrintEntry; CompareF
如果我有一个指向结构/对象的指针,并且该结构/对象包含另外两个指向其他对象的指针,并且我想删除“包含这两个指针的对象而不破坏它所持有的指针”——我该怎么做这样做吗? 指向对象 A 的指针(包含指向对象
像这样的代码 package main import "fmt" type Hello struct { ID int Raw string } type World []*Hell
我有一个采用以下格式的 CSV: Module, Topic, Sub-topic 它需要能够导入到具有以下格式的 MySQL 数据库中: CREATE TABLE `modules` ( `id
通常我使用类似的东西 copy((uint8_t*)&POD, (uint8_t*)(&POD + 1 ), back_inserter(rawData)); copy((uint8_t*)&PODV
错误 : 联合只能在具有兼容列类型的表上执行。 结构(层:字符串,skyward_number:字符串,skyward_points:字符串)<> 结构(skyward_number:字符串,层:字符
我有一个指向结构的指针数组,我正在尝试使用它们进行 while 循环。我对如何准确初始化它并不完全有信心,但我一直这样做: Entry *newEntry = malloc(sizeof(Entry)
我正在学习 C,我的问题可能很愚蠢,但我很困惑。在这样的函数中: int afunction(somevariables) { if (someconditions)
我现在正在做一项编程作业,我并没有真正完全掌握链接,因为我们还没有涉及它。但是我觉得我需要它来做我想做的事情,因为数组还不够 我创建了一个结构,如下 struct node { float coef;
给定以下代码片段: #include #include #define MAX_SIZE 15 typedef struct{ int touchdowns; int intercepti
struct contact list[3]; int checknullarray() { for(int x=0;x<10;x++) { if(strlen(con
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: Empty “for” loop in Facebook ajax what does AJAX call
我刚刚在反射器中浏览了一个文件,并在结构构造函数中看到了这个: this = new Binder.SyntaxNodeOrToken(); 我以前从未见过该术语。有人能解释一下这个赋值在 C# 中的
我经常使用字符串常量,例如: DICT_KEY1 = 'DICT_KEY1' DICT_KEY2 = 'DICT_KEY2' ... 很多时候我不介意实际的文字是什么,只要它们是独一无二的并且对人类读
我是 C 的新手,我不明白为什么下面的代码不起作用: typedef struct{ uint8_t a; uint8_t* b; } test_struct; test_struct
您能否制作一个行为类似于内置类之一的结构,您可以在其中直接分配值而无需调用属性? 前任: RoundedDouble count; count = 5; 而不是使用 RoundedDouble cou
这是我的代码: #include typedef struct { const char *description; float value; int age; } swag
在创建嵌套列表时,我认为 R 具有对列表元素有用的命名结构。我有一个列表列表,并希望应用包含在任何列表中的每个向量的函数。 lapply这样做但随后剥离了列表的命名结构。我该怎么办 lapply嵌套列
我正在做一个用于学习目的的个人组织者,我从来没有使用过 XML,所以我不确定我的解决方案是否是最好的。这是我附带的 XML 文件的基本结构:
我是新来的 nosql概念,所以当我开始学习时 PouchDB ,我找到了这个转换表。我的困惑是,如何PouchDB如果可以说我有多个表,是否意味着我需要创建多个数据库?因为根据我在 pouchdb
我是一名优秀的程序员,十分优秀!