-1

嗨,我希望能够撕毁核心数据中的一些信息,但我不确定如何检查文件是否正确保存。我尝试使用 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;

}
4

2 回答 2

0

查看核心数据更改的最简单方法是使用sqlite 浏览器

转到模拟器文件夹,找到应用程序,转到文档并打开您的文件夹

XCODE_SIMLATOR_XX

寻找

应用

然后找到你的应用,打开Documents,找到你的App.sqlite,用sqlite浏览器打开,检查你的所有改动很容易,不建议编辑数据结构,因为coredata不是sqlite,只是用sqlite保存数据,但是您必须习惯于核心数据的对象方法;)

祝你好运

于 2012-08-28T03:50:47.853 回答
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);
于 2012-08-28T04:05:57.437 回答