0

大家好,我在使用 CoreData Persistence 时遇到问题,我的问题是,当我启动我的应用程序时,我设法将一些数据(来自应用程序内的表单)添加到我的数据库并使用 NSLog 显示它们。但实际上我认为当我停止 ipad 模拟器并在之后重新启动它时,所有这些数据都会消失..

所以我真的不知道它是来自我的代码还是因为模拟器。我制作了一个图表来向您展示我的应用程序和我的实体的架构:

模型

模型

问题是我使用不同的 viewController 所以我需要将 ManagedObjectModel 传递给每个。我的表单在 newDocumentViewController 中,当我添加一些实体时,我想在所有其他 viewController 中访问它们并将其保存到应用程序本地存储中。

这里有一些代码向您展示:

AppDelegate.m

@synthesize managedObjectContext = __managedObjectContext;
@synthesize managedObjectModel = __managedObjectModel;
@synthesize persistentStoreCoordinator = __persistentStoreCoordinator;


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // Override point for customization after application launch.

    DetailViewController *detailViewController = [[DetailViewController alloc] initWithNibName:@"DetailViewController" bundle:nil];
    UINavigationController *detailNavigationController = [[UINavigationController alloc] initWithRootViewController:detailViewController];

    MasterViewController *masterViewController = [[MasterViewController alloc] initWithNibName:@"MasterViewController" bundle:nil];
    UINavigationController *masterNavigationController = [[UINavigationController alloc] initWithRootViewController:masterViewController];

    masterViewController.managedObjectContext = self.managedObjectContext;    
    detailViewController.managedObjectContext = self.managedObjectContext;

我在每个 masterViewController 和 DetailViewController(以及从 DetailViewController 到 NewDocumenViewController)中都有这些属性来接收 objectContext

@property (nonatomic,strong) NSManagedObjectContext *managedObjectContext;

所以有了这个,我真的不知道如何从每个控制器访问我的数据,并且数据是否通过这样的方式存储在本地:

新文档控制器.m

-(void) addNewDocument:(NSString*)name with_niveau:(NSInteger)level{
    Document *doc = [NSEntityDescription insertNewObjectForEntityForName:@"Document" inManagedObjectContext:managedObjectContext];
    doc.nom=name;
    doc.niveau=[NSNumber numberWithInteger:level];
}
-(void) addNewDocument_info:(NSString*)name with_createur:(NSString*)createur with_dateModif:(NSDate*)date1 with_status:(BOOL)etat{

    DocumentInfo *doc_info = [NSEntityDescription insertNewObjectForEntityForName:@"DocumentInfo" inManagedObjectContext:managedObjectContext];

    doc_info.nom =name;
    doc_info.createur=createur;
    doc_info.date_creation=[NSDate date];
    doc_info.date_modification=date1;
    doc_info.status= [NSNumber numberWithBool:etat];
}
4

1 回答 1

0

您需要保存数据:

NSError *error = nil;
[self.managedObjectContext save:&error]; 
于 2012-06-07T11:00:00.590 回答