获取结果崩溃(使用persistentContainer) - 核心数据目标C

时间:2017-02-03 21:02:51

标签: ios objective-c core-data

我正在尝试从核心数据中获取结果,以便在加载视图时在表视图中显示。请求会获取结果,但一旦视图加载就会崩溃。

原因:' - [__ NSArrayI isEqualToString:]:无法识别的选择器发送到实例

自从引入Persistent Container以来,我找不到任何关于如何使用Objective C使用它的参考。

我有一个简单的核心数据模型, 实体 - 带有属性的'项目' - '名称'

// ViewController.m //

@interface ViewController ()
{
NSMutableArray *listArray;
AppDelegate *delegate;
NSManagedObjectContext *context;
NSMutableArray *resultListArray;
}
@end

- (void)viewDidLoad {
[super viewDidLoad];
listArray = [[NSMutableArray alloc]init];
resultListArray = [[NSMutableArray alloc]init];
[self fetchItems];
}

TableView数据源

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [listArray count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];

if (resultListArray) {
    cell.textLabel.text = [resultListArray objectAtIndex:indexPath.row];
}

cell.textLabel.text = [listArray objectAtIndex:indexPath.row];
return cell;
}

获取托管上下文

- (NSManagedObjectContext *)managedObjectContext {

delegate = (AppDelegate*)[[UIApplication sharedApplication]delegate];
context = [[delegate persistentContainer]viewContext];

NSLog(@"ManagedContext Created Successfully");

return context;
}

保存到核心数据

- (void) saveItemMethod:(NSString*)name {

context = [self managedObjectContext];

NSManagedObject *task = [[Item alloc]initWithContext:context];

[task setValue:name forKey:@"name"];

NSString *itemString = [task valueForKey:@"name"];

[listArray addObject:itemString];

[delegate saveContext];

NSLog(@"Save successful");
NSLog(@"%@", listArray);
}

获取结果

- (void) fetchItems {

context = [self managedObjectContext];

NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Item"];
// request.resultType = NSDictionaryResultType;

NSError *error = nil;
NSManagedObject *result = (NSManagedObject*)[context executeFetchRequest:request error:&error];

NSString *resultString = [result valueForKey:@"name"];

[resultListArray addObject:resultString];

NSLog(@"Fetch successful");
NSLog(@"%@", resultListArray);

[self.tableView reloadData];
}

1 个答案:

答案 0 :(得分:1)

错误消息表明正在isEqualToString:对象上调用NSArray方法 - 这显然不起作用(isEqualToString:NSString方法)

因此,您的代码将数组视为字符串。问题的根源在于fetchItems代码:

NSManagedObject *result = (NSManagedObject*)[context executeFetchRequest:request error:&error];
NSString *resultString = [result valueForKey:@"name"];
[resultListArray addObject:resultString];

第一行错误:executeFetchRequest返回NSManagedObjects数组(即使数组中只有一个对象)。因此,您只需使用:

NSArray *result = [context executeFetchRequest:request error:&error];
self.resultListArray = [[result valueForKey:@"name"] mutableCopy];