我正在学习如何使用核心数据。我有一个应用程序填写标记为用户的实体的所有变量。然后我将这些用户加载到一个表中。此时可以选择用户并将其推送到新的视图控制器,此时我会生成所选用户的 PDF 文件。所以我想我误解了什么是我必须传递给视图控制器才能访问表中选择的核心数据。这是我的表视图控制器中的内容。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[self.spinner startAnimating];
ReportPDFViewController *reviewViewController = [[ReportPDFViewController alloc] init];
reviewViewController.userInfo = [[self.fetchedResultsController fetchedObjects] objectAtIndex:indexPath.row];
[self.navigationController pushViewController:reviewViewController animated:YES];
}
然后下一个视图说明了这一点
- (void)viewDidLoad
{
[super viewDidLoad];
UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithTitle:@"Email PDF"
style:UIBarButtonItemStylePlain
target:self
action:@selector(emailPDF)];
self.navigationItem.rightBarButtonItem = barButton;
TrafficSignalProAppDelegate *appDelegate = [[UIApplication sharedApplication]delegate];
context = [appDelegate managedObjectContext];
// Do any additional setup after loading the view.
NSEntityDescription *entitydesc = [NSEntityDescription entityForName:@"User" inManagedObjectContext:context];
NSFetchRequest *request = [[NSFetchRequest alloc] init];
[request setEntity:entitydesc];
NSError *error;
NSArray *matchingData = [userInfo executeFetchRequest:request error:&error];
NSString *Intersection;
NSString *currentDay;
for (NSManagedObject *obj in matchingData) {
Intersection = sendIntersection;
currentDay = sendDate;
}
NSString* fileName = [self getPDFFileName];
[PDFRenderer drawPDF:fileName intersectionSearch:Intersection dateSearch:currentDay];
[self showPDFFile];
self.navigationItem.title = @"Report";
}
所以我试图传递所选行的 NSManagedObjectContext 然后加载。在那之后我真的迷路了。我不确定传递托管对象上下文是否正确,如果正确,我不知道 ReportPDFViewController 中的代码有什么问题。我浏览了所有我能找到的教程。我的编程背景有限,因此将不胜感激。