gpt4 book ai didi

cocoa - 将文件拖放到 NSOutlineView 中

转载 作者:行者123 更新时间:2023-12-03 16:31:05 25 4
gpt4 key购买 nike

我正在尝试基于Apple的示例在 NSOutlineView 中实现简单的拖放操作 - https://developer.apple.com/library/mac/samplecode/SourceView/Introduction/Intro.html

一切似乎都没问题,但最后当我从 Finder 中删除一些文件时,出现错误:

[<ChildNode 0x60800005a280> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key description.') was raised during a dragging session

这是我的测试项目:https://www.dropbox.com/s/1mgcg2dysvs292u/SimpleDrag.zip?dl=0

我在我的应用程序中真正需要的是:允许用户将多个文件和文件夹拖放到某个树列表中,然后将它们显示给用户。还将所有这些保存到某个文件中,以便可以再次加载所有用户拖动的文件和文件夹。

我想要的最终结果是这样的:

enter image description here

最佳答案

NSObjectdescription 属性是只读的,通常通过在实现文件中提供 getter 来设置:

- (NSString *)description {
return [self urlString]; // Using urlString solely for demo purposes.
}

您无法通过键值编码或直接赋值来设置它:

self.description = [self urlString]; // Xcode error: 'Assignment to readonly property'
[self setValue:[self urlString] forKey:@"description"];

-[ChildNode copyWithZone:] 中,尝试执行两者中的后者,这就是导致警告记录到控制台的原因。

// -------------------------------------------------------------------------------
// copyWithZone:zone
// -------------------------------------------------------------------------------
- (id)copyWithZone:(NSZone *)zone
{
id newNode = [[[self class] allocWithZone:zone] init];

// One of the keys in mutableKeys is 'description'...
// ...but it's readonly! (it's defined in the NSObject protocol)
for (NSString *key in [self mutableKeys])
{
[newNode setValue:[self valueForKey:key] forKey:key];
}

return newNode;
}

这就引出了一个问题,为什么您会在应用程序中收到警告,而不是在示例应用程序中收到警告?据我所知,示例应用程序中没有 ChildNode 实例发送过 copyWithZone: 消息,而这种情况确实发生在您的应用程序中,在放置后立即发生。当然,这里还有第二个问题:为什么 Apple 无法以这种方式设置时要显式包含 description 键路径? - 不幸的是我无法帮助你。

<小时/>

try catch 实际上不会导致异常的错误的一个非常方便的方法是添加一个所有异常断点。如果您在示例应用程序中执行此操作,您将看到应用程序在导致问题的行处卡住,从而使您有更好的机会找出问题。

enter image description here

关于cocoa - 将文件拖放到 NSOutlineView 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29776323/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com