gpt4 book ai didi

ios - Core Data 此类不符合键名的键值编码

转载 作者:行者123 更新时间:2023-11-29 12:40:42 25 4
gpt4 key购买 nike

我必须将核心数据添加到我现有的项目中,但我所拥有的只是一个实体和一个属性。我有一个名为“Places”的实体和一个名为 name 的属性。我似乎在 cell.nameLabel.text 行收到了 SIGABRT:

NSManagedObject *Item = [placesArray objectAtIndex:indexPath.row];

cell.nameLabel.text = [NSString stringWithFormat:@"%@", [Item valueForKey:@"name"]

我导入了“Places.h”,它是 NSManagedObject 的子类。我不知道可能是什么问题。

感谢所有帮助,提前致谢。

编辑:这是完整的错误:

    2014-07-30 08:56:11.415 FindItHere[1216:60b] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<__NSCFConstantString 0x1f7dc> valueForUndefinedKey:]: this class is not key value coding-compliant for the key name.'
*** First throw call stack:
(
0 CoreFoundation 0x01d5c1e4 __exceptionPreprocess + 180
1 libobjc.A.dylib 0x01adb8e5 objc_exception_throw + 44
2 CoreFoundation 0x01debfe1 -[NSException raise] + 17
3 Foundation 0x0158ec7a -[NSObject(NSKeyValueCoding) valueForUndefinedKey:] + 282
4 Foundation 0x014fbdfd _NSGetUsingKeyValueGetter + 81
5 Foundation 0x014fb437 -[NSObject(NSKeyValueCoding) valueForKey:] + 260
6 FindItHere 0x0000f6dc -[FindTableViewController tableView:cellForRowAtIndexPath:] + 508
7 UIKit 0x0068711f -[UITableView _createPreparedCellForGlobalRow:withIndexPath:] + 412
8 UIKit 0x006871f3 -[UITableView _createPreparedCellForGlobalRow:] + 69
9 UIKit 0x00668ece -[UITableView _updateVisibleCellsNow:] + 2428
10 UIKit 0x0067d6a5 -[UITableView layoutSubviews] + 213
11 UIKit 0x005fd964 -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 355
12 libobjc.A.dylib 0x01aed82b -[NSObject performSelector:withObject:] + 70
13 QuartzCore 0x04c1145a -[CALayer layoutSublayers] + 148
14 QuartzCore 0x04c05244 _ZN2CA5Layer16layout_if_neededEPNS_11TransactionE + 380
15 QuartzCore 0x04c050b0 _ZN2CA5Layer28layout_and_display_if_neededEPNS_11TransactionE + 26
16 QuartzCore 0x04b6b7fa _ZN2CA7Context18commit_transactionEPNS_11TransactionE + 294
17 QuartzCore 0x04b6cb85 _ZN2CA11Transaction6commitEv + 393
18 QuartzCore 0x04b6d258 _ZN2CA11Transaction17observer_callbackEP19__CFRunLoopObservermPv + 92
19 CoreFoundation 0x01d2436e __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 30
20 CoreFoundation 0x01d242bf __CFRunLoopDoObservers + 399
21 CoreFoundation 0x01d02254 __CFRunLoopRun + 1076
22 CoreFoundation 0x01d019d3 CFRunLoopRunSpecific + 467
23 CoreFoundation 0x01d017eb CFRunLoopRunInMode + 123
24 GraphicsServices 0x031745ee GSEventRunModal + 192
25 GraphicsServices 0x0317442b GSEventRun + 104
26 UIKit 0x0058ef9b UIApplicationMain + 1225
27 FindItHere 0x0000c54d main + 141
28 libdyld.dylib 0x02e0d70d start + 1
29 ??? 0x00000001 0x0 + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException

这个错误发生在这一行:

[cell.nameLabel setText:[NSString stringWithFormat:@"%@", [Item valueForKey:@"name"]]];

编辑 #2:这是我在 viewDidLoad 中填充数组的方式:

placesArray = [[NSMutableArray alloc] init];


self.tableView.delegate = self;
self.tableView.dataSource = self;

[placesArray addObject:@"ATM"];
[placesArray addObject:@"Park"];
[placesArray addObject:@"Restaurant"];
[placesArray addObject:@"Library"];
[placesArray addObject:@"Gas Station"];
[placesArray addObject:@"Florist"];
[placesArray addObject:@"Cafe"];

最佳答案

查看您提供的代码,您实际上根本没有使用 CoreData。

placesArray = [[NSMutableArray alloc] init];

[placesArray addObject:@"ATM"];
[placesArray addObject:@"Park"];
[placesArray addObject:@"Restaurant"];

上面的代码表明,您没有使用您的 CoreData 实体 Item,而是只使用了一个简单的 NSString。这会使它崩溃,因为当您执行以下操作时:

NSManagedObject *Item = [placesArray objectAtIndex:indexPath.row];
cell.nameLabel.text = [NSString stringWithFormat:@"%@", [Item valueForKey:@"name"]

你正在做的相当于:

cell.nameLabel.text = [NSString stringWithFormat:@"%@", [{NSString} valueForKey:@"name"]

您有两个解决方案:

1) 放弃 CoreData,因为它看起来不像您实际在使用它。 Item 不是 NSManagedObject,您可以将其设为常规 NSObject。这是更快的解决方案,甚至可能对您更有意义。这使您的代码如下:

placesArray = [[NSMutableArray alloc] init];

for (int i = 0; i < items.count; i++)
{
Item *newItem = [Item new];
newItem.name = @"ATM";
...
[placesArray addObject:newItem];
}

Item *cellItem = [placesArray objectAtIndex:indexPath.row]
cell.nameLabel.text = cellItem.name;

2) 您是否设置了ManagedObjectContextPersistantSToreCoordinator 等?如果没有,请查找有关如何在项目中正确设置 CoreData 的教程。如果有,则需要获取 NSManagedObjectContext 并执行以下操作之一:

  • 检测它是否在您的 CoreData 数据库中。如果不是,那么您需要执行 insertNewObjectForEntityForName 并在之后保存您的上下文。如果它在您的数据库中,那么您需要执行 FetchRequestLook at this Guide for how to do it.

关于ios - Core Data 此类不符合键名的键值编码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25040918/

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