当我尝试在委托(delegate)中保存 NSManageObject 时遇到很多麻烦,以及尝试读取对象时遇到的最严重问题。
我的代表是这样的:
@class ViewController;
@class RootViewController;
@interface AppDelegate : UIResponder <UIApplicationDelegate>
{
NSManagedObjectModel *managedObjectModel;
NSManagedObjectContext *managedObjectContext;
NSPersistentStoreCoordinator *persistentStoreCoordinator;
Trips *trip;
Garage *car;
}
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) ViewController *viewController;
@property (strong, nonatomic) RootViewController *rootviewcontroller;
@property (nonatomic, retain, readonly) NSManagedObjectModel *managedObjectModel;
@property (nonatomic, retain, readonly) NSManagedObjectContext *managedObjectContext;
@property (nonatomic, retain, readonly) NSPersistentStoreCoordinator *persistentStoreCoordinator;
@property (nonatomic, retain) Trips *trip;
@property (nonatomic, retain) Garage *car;
- (NSString *)applicationDocumentsDirectory;
- (void) setCarGarage *)Car;
- (void) setTripTrips *)Trip;
- (Trips *) gettrip;
- (Garage *) getcar;
@end
完整的set和get方法如下:
- (void) setCarGarage *)Car
{
car = Car;
}
- (void) setTripTrips *)Trip
{
trip = Trip;
}
- (Trips *) gettrip
{
return trip;
}
- (Garage *) getcar
{
return car;
}
在我做的第一个 View 中:
AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
trip = (Trips *)[NSEntityDescription insertNewObjectForEntityForName"Trips" inManagedObjectContext:context];
[appDelegate setTrip:trip];
似乎工作正常,即使我执行 NSLog(@"%@", [appDelegate gettrip]); ,它向我展示了没有问题的对象。但是当我尝试在其他 View 中使用 [appDelegate gettrip] 读取相同的行程时,根本不起作用,实际上使用 NSLog 时,它说对象是 Garage 类型而不是 Trips。
我不知道我做错了什么。帮助。
Best Answer-推荐答案 strong>
您是否确保在创建项目后保存上下文?如果您不保存它,那么我认为您的新实体不会被正确保存。在代码中,您只是在上下文中创建对象,但您必须保存上下文以使其持久:
NSError *error = nil;
if(![self.managedObjectContext save:&error]){
//Handle error
}
我希望这会有所帮助!
关于iphone - 试图将 NSManagedObject 保存在 appDelegate 中,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/8732705/
|