我从http://www.appcoda.com/introduction-to-core-data/了解了核心数据,但是当我自己开发一个示例项目时,很多错误出现在两个文件中。 任何帮助将不胜感激,因为我是iPhone开发的新手
//
// PupilViewController.m
// Pupils
//
// Created by Lukasz Mozdzen on 21.04.2013.
// Copyright (c) 2013 Lukasz Mozdzen. All rights reserved.
//
#import "PupilViewController.h"
@interface PupilViewController ()
@property (strong) NSMutableArray *pupils;
@end
@implementation PupilViewController
- (NSManagedObjectContext *)managedObjectContext
{
NSManagedObjectContext *context = nil;
id delegate = [[UIApplication sharedApplication] delegate];
if ([delegate performSelector:@selector(managedObjectContext)]) {
context = [delegate managedObjectContext];
}
return context;
}
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
// Fetch the devices from persistent data store
NSManagedObjectContext *managedObjectContext = [self managedObjectContext];
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] initWithEntityName:@"Pupil"];
self.pupils = [[managedObjectContext executeFetchRequest:fetchRequest error:nil] mutableCopy];
[self.tableView reloadData];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return self.pupils.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
// Configure the cell...
NSManagedObject *pupil = [self.pupils objectAtIndex:indexPath.row];
[cell.textLabel setText:[NSString stringWithFormat:@"%@ %@", [pupil valueForKey:@"name"], [pupil valueForKey:@"surname"]]];
[cell.detailTextLabel setText:[pupil valueForKey:@"telephone"]];
return cell;
}
@end
错误日志:
/Users/Lukasz/Desktop/Pupils/Pupils/PupilViewController.m:36:5: Use of undeclared identifier 'NSFetchRequest'
/Users/Lukasz/Desktop/Pupils/Pupils/PupilViewController.m:36:21: Use of undeclared identifier 'fetchRequest'
/Users/Lukasz/Desktop/Pupils/Pupils/PupilViewController.m:36:38: Use of undeclared identifier 'NSFetchRequest'
/Users/Lukasz/Desktop/Pupils/Pupils/PupilViewController.m:37:62: Use of undeclared identifier 'fetchRequest'
/Users/Lukasz/Desktop/Pupils/Pupils/PupilViewController.m:62:5: Unknown type name 'NSManagedObject'; did you mean 'NSManagedObjectModel'?
/Users/Lukasz/Desktop/Pupils/Pupils/PupilViewController.m:63:67: Receiver type 'NSManagedObjectModel' for instance message is a forward declaration
/Users/Lukasz/Desktop/Pupils/Pupils/PupilViewController.m:64:36: Receiver type 'NSManagedObjectModel' for instance message is a forward declaration
另外在其他文件中:
//
// PupilDetailViewController.m
// Pupils
//
// Created by Lukasz Mozdzen on 21.04.2013.
// Copyright (c) 2013 Lukasz Mozdzen. All rights reserved.
//
#import "PupilDetailViewController.h"
@interface PupilDetailViewController ()
@end
@implementation PupilDetailViewController
- (NSManagedObjectContext *)managedObjectContext {
NSManagedObjectContext *context = nil;
id delegate = [[UIApplication sharedApplication] delegate];
if ([delegate performSelector:@selector(managedObjectContext)]) {
context = [delegate managedObjectContext];
}
return context;
}
- (IBAction)cancel:(id)sender {
[self dismissViewControllerAnimated:YES completion:nil];
}
- (IBAction)save:(id)sender {
NSManagedObjectContext *context = [self managedObjectContext];
// Create a new managed object
NSManagedObject *newPupil = [NSEntityDescription insertNewObjectForEntityForName:@"Pupil" inManagedObjectContext:context];
[newPupil setValue:self.nameTextField.text forKey:@"name"];
[newPupil setValue:self.surnameTextField.text forKey:@"surname"];
[newPupil setValue:self.telephoneTextField.text forKey:@"telephone"];
NSError *error = nil;
// Save the object to persistent store
if (![context save:&error]) {
NSLog(@"Can't Save! %@ %@", error, [error localizedDescription]);
}
[self dismissViewControllerAnimated:YES completion:nil];
}
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
错误日志:
/Users/Lukasz/Desktop/Pupils/PupilDetailViewController.m:38:5: Unknown type name 'NSManagedObject'; did you mean 'NSManagedObjectModel'?
/Users/Lukasz/Desktop/Pupils/PupilDetailViewController.m:38:34: Use of undeclared identifier 'NSEntityDescription'; did you mean 'kSecAttrDescription'?
/Users/Lukasz/Desktop/Pupils/PupilDetailViewController.m:38:34: Bad receiver type 'CFTypeRef' (aka 'const void *')
/Users/Lukasz/Desktop/Pupils/PupilDetailViewController.m:39:6: Receiver type 'NSManagedObjectModel' for instance message is a forward declaration
/Users/Lukasz/Desktop/Pupils/PupilDetailViewController.m:40:6: Receiver type 'NSManagedObjectModel' for instance message is a forward declaration
/Users/Lukasz/Desktop/Pupils/PupilDetailViewController.m:41:6: Receiver type 'NSManagedObjectModel' for instance message is a forward declaration
/Users/Lukasz/Desktop/Pupils/PupilDetailViewController.m:45:11: Receiver type 'NSManagedObjectContext' for instance message is a forward declaration
任何人都可以提供帮助吗?
答案 0 :(得分:17)
在使用之前,您需要在捆绑中添加coredata框架。
正如你所说,你是iPhone开发的新手,我建议你在实施之前参考apple docs on coredata。
答案 1 :(得分:6)
除了在项目设置中添加Core Data框架外,您还必须在源代码中#import <CoreData/CoreData.h>
。通过将#import
放入项目的.pch文件中,您只需对整个项目执行一次,通常可以在&#34;支持文件&#34;你的项目树的一组。
答案 2 :(得分:1)
问题是,从那时起经过了一段时间,从iOS 10开始,python3.5 -m pip install --user numpy
已移至属性ManagedObjectContext
内的PersistentContainer
。这也是为什么你需要稍微改变 AppCoda 的片段,以便调用上下文#
viewContext
答案 3 :(得分:0)
import CoreData
在AppDelegate&#39;并且在相应的视图控制器中为我解决了类似的问题。我将CoreData添加到现有项目中,因此错过了自动导入CoreData框架。
使用Swift 3进行测试