您好我希望能够在核心数据中删除一些信息,但我不确定如何检查文件是否已正确保存。我尝试使用NSLog,但在调用时返回null。我有一个字典,它有一个uniqueID和一个我要保存的标题。我将其与数据库的上下文一起传递。然后我对数据库进行排序以检查它是否有任何重复,如果没有,那么我添加文件。
+(VacationPhoto*) photoWithFlickrInfo: (NSDictionary*) flickrInfo inManagedObjectContext: (NSManagedObjectContext*) context{
//returns the dictionary
NSLog(@"Photo To Store =%@", flickrInfo);
VacationPhoto * photo = nil;
NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"VacationPhoto"];
request.predicate = [NSPredicate predicateWithFormat:@"uniqueID = %@", [flickrInfo objectForKey:FLICKR_PHOTO_ID]];
NSSortDescriptor * descriptor = [NSSortDescriptor sortDescriptorWithKey:@"title" ascending:YES];
request.sortDescriptors = [NSArray arrayWithObject:descriptor];
NSError *error = nil;
NSArray *matches = [context executeFetchRequest:request error:&error];
if (!matches || [matches count] > 1) {
// handle error
} else if ( [matches count] == 0){
photo.title = [flickrInfo objectForKey:FLICKR_PHOTO_TITLE];
//Returns NULL when called
NSLog(@"title = %@", photo.title);
photo.uniqueID = [flickrInfo objectForKey:FLICKR_PHOTO_ID];
//Returns NULL when called
NSLog(@"ID = %@", photo.uniqueID);
} else {
//If photo already exists this is called
photo = [matches lastObject];
}
return photo;
}
答案 0 :(得分:0)
查看核心数据更改的最简单方法是使用sqlite browser
转到模拟器文件夹,找到应用程序,转到文档并打开
文件夹XCODE_SIMLATOR_XX
找到
应用
找到你的应用程序,打开文档,找到你的App.sqlite, 用sqlite浏览器打开它,并轻松检查所有更改,不建议编辑数据结构,因为coredata不是sqlite,只是使用sqlite来保存数据,但你必须习惯核心数据的对象方法;)
祝你好运答案 1 :(得分:0)
当我将信息添加到数据库中时,我没有调用方法insertNewObjectForEntityForName,这就是没有保存任何内容的原因。在我添加之后,NSLogs提供了正确的信息
photo = [NSEntityDescription insertNewObjectForEntityForName:@"VacationPhoto" inManagedObjectContext:context];
photo.title = [flickrInfo objectForKey:FLICKR_PHOTO_TITLE];
NSLog(@"title = %@", photo.title);
photo.uniqueID = [flickrInfo objectForKey:FLICKR_PHOTO_ID];
NSLog(@"ID = %@", photo.uniqueID);