我正在尝试在NSOutlineView中实现简单的拖放操作,基于Apple的示例 - 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
我的应用程序中我真正需要的是:允许用户将多个文件和文件夹拖放到某个树列表中,然后将其显示给用户。同时将所有这些保存到某个文件中,因此可以使用所有用户拖动的文件和文件夹再次加载它。
我希望得到这样的最终结果:
答案 0 :(得分:3)
description
的{{1}}属性是只读的,通常通过在实现文件中提供getter来设置:
NSObject
您无法通过键值编码或直接分配来设置它:
- (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
消息,而这种情况确实发生在您的应用中,在丢弃之后立即发生。当然,这里还有第二个问题:为什么Apple无法以这种方式设置时明确包含copyWithZone:
关键路径? - 不幸的是,我无法帮助你。
尝试捕获实际上不会导致异常的错误的一种非常方便的方法是添加所有异常断点。如果您在示例应用中执行此操作,则会发现该应用会冻结导致问题的行,从而使您更有可能找出问题。