我有一个屏幕,其中包含UITableView
,在此屏幕中我有一个NSManagedObjects
数组。它运行得很好,但是当我尝试移动到另一个屏幕(单击特定单元格,然后按下一个新屏幕),然后返回到同一个UITableView
屏幕,所有对象都丢失了。
这意味着什么?我尝试打印NSManagedObjects
的数组,它很好,那里的所有对象,但是当我打印每个对象的描述时,我从所有对象属性中得到nil
。
有人知道它的原因是什么?我不知道为什么但它在12小时前工作得很好,但是现在它已经搞砸了,我不知道我做了什么。
提前致谢!
保存方法:
- (void)saveContext {
NSManagedObjectContext *managedObjectContext = self.managedObjectContext;
if (managedObjectContext != nil) {
NSError *error = nil;
if ([managedObjectContext hasChanges] && ![managedObjectContext save:&error]) {
// Replace this implementation with code to handle the error appropriately.
// abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
abort();
}
else {
NSLog(@"Context saved!");
}
}
}
这是我保存对象的方式:
NSDictionary *response = responseObject;
if ([[response valueForKey:@"status"] rangeOfString:@"ok"].location != NSNotFound)
{
NSArray *data = [response objectForKey:@"data"];
if (data.count != 0)
{
if (page.integerValue == 0) {
[[DownloadData sharedData] deleteAllObjectsFromEntityName:@"DbHomeCuisine"];
[[DownloadData sharedData] deleteAllObjectsFromEntityName:@"DbHomeCategory"];
[[DownloadData sharedData] deleteAllObjectsFromEntityName:@"DbHomeDish"];
}
NSMutableArray *homePageObjects = [[NSMutableArray alloc] initWithCapacity:data.count];
for (NSDictionary *object in data)
{
NSNumber *type = [object objectForKey:@"type"];
switch (type.integerValue) {
case 1:
{
NSDictionary *content = [object objectForKey:@"content"];
NSManagedObjectContext *context = [[MainDb sharedDb] managedObjectContext];
DbHomeCuisine *homeCuisine = [NSEntityDescription insertNewObjectForEntityForName:@"DbHomeCuisine" inManagedObjectContext:context];
NSInteger cuisineId = [[content valueForKey:@"cuisine_id"] integerValue];
homeCuisine.cuisine = [self gCuisineWithCuisineId:[NSNumber numberWithInteger:cuisineId]];
NSInteger count = [[content valueForKey:@"count"] integerValue];
homeCuisine.count = [NSNumber numberWithInteger:count];
homeCuisine.type = type;
[homePageObjects addObject:homeCuisine];
}
break;
case 2:
{
NSDictionary *content = [object objectForKey:@"content"];
NSManagedObjectContext *context = [[MainDb sharedDb] managedObjectContext];
DbHomeCategory *homeCategory = [NSEntityDescription insertNewObjectForEntityForName:@"DbHomeCategory" inManagedObjectContext:context];
NSInteger categoryId = [[content valueForKey:@"category_id"] integerValue];
homeCategory.category = [self gCategoryWithCategoryId:[NSNumber numberWithInteger:categoryId]];
NSInteger count = [[content valueForKey:@"count"] integerValue];
homeCategory.count = [NSNumber numberWithInteger:count];
homeCategory.type = type;
[homePageObjects addObject:homeCategory];
}
break;
case 3:
{
NSDictionary *content = [object objectForKey:@"content"];
NSManagedObjectContext *context = [[MainDb sharedDb] managedObjectContext];
DbHomeDish *homeDish = [NSEntityDescription insertNewObjectForEntityForName:@"DbHomeDish" inManagedObjectContext:context];
homeDish.dishId = [self gInt:content forKey:@"dish_id"];
homeDish.headline = [AppUtils checkForEmptyValue:[content valueForKey:@"title"]];
homeDish.text = [AppUtils checkForEmptyValue:[content valueForKey:@"description"]];
homeDish.cuisineId = [self gInt:content forKey:@"cuisine_id"];
homeDish.cuisine = [self gCuisineWithCuisineId:homeDish.cuisineId];
homeDish.creationDate = [AppUtils checkForEmptyValue:[content valueForKey:@"creation_time"]];
homeDish.userId = [self gInt:content forKey:@"user_id"];
homeDish.longitude = [self gDouble:content forKey:@"lng"];
homeDish.latitude = [self gDouble:content forKey:@"lat"];
homeDish.lastPromoteDate = [AppUtils checkForEmptyValue:[content valueForKey:@"last_promote_time"]];
homeDish.price = [self gInt:content forKey:@"price"];
homeDish.currency = [AppUtils checkForEmptyValue:[content valueForKey:@"currency"]];
homeDish.countryName = [AppUtils checkForEmptyValue:[content valueForKey:@"country_name"]];
homeDish.baseCurrency = [self gFloat:content forKey:@"base_currency"];
homeDish.exchangeRate = [self gFloat:content forKey:@"exchange_rate"];
homeDish.countryIsoCode = [AppUtils checkForEmptyValue:[content valueForKey:@"country_iso_code"]];
homeDish.mainPhoto = [AppUtils checkForEmptyValue:[content valueForKey:@"main_photo"]];
homeDish.like = [self gLikeWithDishId:homeDish.dishId];
homeDish.profileImageURL = [AppUtils checkForEmptyValue:[content valueForKey:@"profile_img_url"]];
homeDish.likeCount = [self gInt:content forKey:@"likes"];
homeDish.type = type;
[homePageObjects addObject:homeDish];
}
break;
default:
break;
}
}
// @@log -- Save data to core data and device
//
//
[[MainDb sharedDb] saveContext];
if (success) {
success(operation, homePageObjects);
}
}
}
答案 0 :(得分:1)
说真的,你应该考虑使用NSFetchedResultsController
进行重构。从Xcode中提供的模板开始(新项目 - >主/详细信息 - >检查核心数据,代码在MasterViewController.m
)。
我强烈反对将Core Data对象加载到要在表视图中显示的数组中。您的问题是这种设置的典型问题,您最终也会遇到内存和性能问题。