无法使用核心数据检索数据
Posted
技术标签:
【中文标题】无法使用核心数据检索数据【英文标题】:Not Able to Retrieve data using core data 【发布时间】:2012-04-27 06:58:49 【问题描述】:我在我的应用程序中使用 coredata 来存储数据。我必须在一个视图控制器中添加数据并在另一个视图控制器中检索它。我尝试了以下代码,但它不起作用。
//addViewController.m
-(IBAction)save:(id)sender
CoreDataOneAppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
NSManagedObjectContext *context = [appDelegate managedObjectContext];
NSManagedObject *newContact;
newContact = [NSEntityDescription insertNewObjectForEntityForName:@"Employee"
inManagedObjectContext:context];
[newContact setValue:name.text forKey:@"name"];
[newContact setValue:amount.text forKey:@"amount"];
name.text = @"";
amount.text = @"";
//label
status.text = @"saved";
NSError *error;
[context save:&error];
我想检索值并在 tableView 中显示它们
//retrieveViewController.m
- (void)viewDidLoad
objects = [[NSArray alloc]init];
CoreDataOneAppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
NSManagedObjectContext *context = [appDelegate managedObjectContext];
NSEntityDescription *entityDesc = [NSEntityDescription entityForName:@"Employee"
inManagedObjectContext:context];
NSFetchRequest *request = [[NSFetchRequest alloc] init];
[request setEntity:entityDesc];
NSError *error;
objects = [context executeFetchRequest:request
error:&error];
[request release];
[super viewDidLoad];
//tableView
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
return 1;
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
return [objects count];
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
labelOne = [[UILabel alloc]initWithFrame:CGRectMake(5, 11, 110, 21)];
labelTwo = [[UILabel alloc]initWithFrame:CGRectMake(230, 11, 70, 21)];
static NSString *cellIdentifier = @"CellIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (cell == nil)
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:cellIdentifier]autorelease];
[cell.contentView addSubview:labelTwo];
[cell.contentView addSubview:labelOne];
NSManagedObject *matches = nil;
matches = [objects objectAtIndex:indexPath.row];
NSString *str1=[NSString stringWithFormat:@"%@",[matches valueForKey:@"name"]];
labelOne.text = str1;
NSString *str2=[NSString stringWithFormat:@"%@",[matches valueForKey:@"amount"]];
labelTwo.text = str2;
return cell;
我收到 EXC_BAD_ACCESS 错误。我尝试使用 NSZombieEnabled 并收到以下错误。
2012-04-27 11:59:18.153 CoreDataOne[4370:207] *** -[_PFArray objectAtIndex:]: message sent to deallocated instance 0x5931e40
如果在 cellForRowAtIndexPath 中编写我在 viewDidLoad 中编写的代码,但如何声明 numberOfRows,我能够检索这些值。
【问题讨论】:
【参考方案1】:您似乎没有使用 ARC。我认为您需要在 viewDidLoad 中保留获取请求的结果(不要忘记在 dealloc 中释放它)。此外,您通过分配/初始化一个数组然后覆盖它而泄漏。
【讨论】:
我是 xcode 和 coredata 的新手。你能给我一些代码或任何对我有帮助的链接吗? @Chandubhai 我的回答与核心数据无关。这是一个内存管理问题。你知道 Obj-C 内存管理是如何工作的吗?如果没有,那么在继续进行任何操作之前,您应该彻底阅读它。 [retain] 和 [release] 是稍微过时的方式。 确定!会做到的。你能告诉我如何让上面的代码工作吗? 这只是一个猜测,但请尝试在您的 executeFetchRequest 行末尾添加retain
消息。然后在您的dealloc
函数中,添加[objects release]
【参考方案2】:
将值存储在 MutableArray 中您要检索值的视图 didload 中。然后在您的表格视图中使用它。将 noof Rows 声明为数组计数。
【讨论】:
将其更改为 MutableArray 在这一行给我一个错误 ... objects = [context executeFetchRequest:request error:&error];以上是关于无法使用核心数据检索数据的主要内容,如果未能解决你的问题,请参考以下文章