超出 KVC 生成数组的范围
我试图从其他对象的层次结构中创建一个对象数组,如下所示:
代码 1:
childController.names = [[NSMutableArray alloc] init];
for (Person *p in list.persons) {
[childController.names addObject:p.name];
}
代码 2:
NSMutableArray *testArray = [list.persons valueForKey:@"name"];
第一个代码片段运行良好,返回一个人名数组。相反,第二个返回一个包含正确人数姓名的数组,但当我在 XCode 中调试代码时,它们显示为“超出范围”。当我尝试访问其中之一时,应用程序终止并显示:
由于未捕获而终止应用程序 例外 'NSInvalidArgumentException',原因: '*** -[NSCFSet objectAtIndex:]: 无法识别的选择器发送到实例 0x72e0620'
列表,人员是核心数据管理对象(如果重要的话)。我做错了什么???
I'm trying to create an array of objects from a hierarchy of other objects like this:
code 1:
childController.names = [[NSMutableArray alloc] init];
for (Person *p in list.persons) {
[childController.names addObject:p.name];
}
code 2:
NSMutableArray *testArray = [list.persons valueForKey:@"name"];
The first code snippet works perfectly, returning an array of persons' names. In contrast, the second returns an array with the correct number of persons' names, but they are shown as "Out of scope" when I debug the code in XCode. When I'm trying to access one of them, the app terminates with:
Terminating app due to uncaught
exception
'NSInvalidArgumentException', reason:
'*** -[NSCFSet objectAtIndex:]:
unrecognized selector sent to instance
0x72e0620'
The list, persons are Core Data managed objects if it matters.. What am I doing wrong???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该检查
人员
的类型。看起来它是一个NSSet
,而NSSet
上的valueForKey:
将返回一个NSSet
。此代码片段应该按预期工作:You should check the type of
persons
. It seems like it is aNSSet
, andvalueForKey:
onNSSet
will return aNSSet
. This code snippet should work as expected: