我正在尝试一个带有tableview的应用程序,其中包含个人资料名称和人物图像... tableview是可编辑的,添加新名称和图片,删除现有名称和重新排列表格是可能的... tableview和更改它应该使用核心数据保存。我几乎完成了它,但核心数据部分有一些问题。
我已经实现了核心数据来为tablecells提供数据持久性。每次重新启动应用程序时,表格单元格都会保留上次发生的更改。但是单元格图像不会加载..如何使图像保持不变?
NSManagedObject *person1 = [NSEntityDescription
insertNewObjectForEntityForName:@"Person"
inManagedObjectContext:context];
NSManagedObject *person2 = [NSEntityDescription
insertNewObjectForEntityForName:@"Person"
inManagedObjectContext:context];
[person1 setValue:@"Bruce" forKey:@"personName"];
UIImage *image1 = [UIImage imageNamed:@"image1.jpg"];
NSData *imageData1 = UIImageJPEGRepresentation(image1, 0.9);
[person1 setValue:imageData1 forKey:@"personPicture"];
NSLog(@"Image1 data %@",imageData1);
[person2 setValue:@"Alfred" forKey:@"personName"];
UIImage *image2 = [UIImage imageNamed:@"image2.jpg"];
NSData *imageData2 = UIImageJPEGRepresentation(image2, 0.9);
[person2 setValue:imageData2 forKey:@"personPicture"];
NSError *error;
if (![context save:&error]) {
NSLog(@"Whoops, couldn't save: %@", [error localizedDescription]);
}
然后以
完成提取NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription
entityForName:@"Person" inManagedObjectContext:context];
[fetchRequest setEntity:entity];
NSError *error1 = nil;
self.persons = [[context executeFetchRequest:fetchRequest error:&error1] mutableCopy];
这很多都是在appDelegate的didFinishLaunchingWithOptions
中完成的。然后将数据用作tableview类实现文件中的cellForRowAtIndexPath
方法
Person *thisPerson = [persons objectAtIndex:indexPath.row];
cell.textLabel.text = thisPerson.personName;
UIImage *image = [UIImage imageWithData:[thisPerson valueForKey:@"personPicture"]];
if ( image == nil ) {
image = [UIImage imageNamed:@"QuestionMark.jpg"];
}
cell.imageView.image = image;
单元格正在正确加载...我所做的所有编辑部分也正在保存并重新加载..第一次加载应用程序时图像加载正确..当重新启动时,出现QuestionMark.jpg图像。 .which是因为图像是nil ..我试过NSLog来显示第一个图像数据并得到了这个:
2012-09-07 17:05:59.395 Sample Project[1688:fb03] Image1 data <ffd8ffe0 00104a46
49460001 01000001 00010000 ffe10058 45786966 00004d4d 002a0000 00080002 01120003
00000001 00010000 87690004 00000001 00000026 00000000 0003a001 00030000 00010001
0000a002 00040000 00010000 00bea003 00040000 00010000 01090000 .........
...... .............. 7ff4d668 0356803f 357e307f c94ff14f fd858ffe
9af4ba00 f39a00cf a00d0a00 cfa00280 0a002803 ffd9>
在那里我添加了更多点。但是,这似乎表明它保存了数据..
答案 0 :(得分:1)
如果图像相对较小,则将其另存为核心数据存储库中的NSData对象。我这样做是为了缩略图等。对于巨大的图像,您可以保存URL并将图像放在Documents文件夹中,并将URL作为Core Data中的对象保存到文件(NSURL)。如果删除该核心数据实体,则必须删除该文件。
编辑:关于您的问题中的“抱歉......”评论,请更改此行:
UIImage *image = [UIImage imageWithData:[thisPerson valueForKey:@"personPicture"]];
到
NSData *data = thisPerson.personPicture;
if(data) {
NSLog(@"Image class: %@", NSStringFromClass[data class]);
if([data isKindOfClass:[NSData data]]) {
NSLog(@"Data was of size %u", [data length]);
UIImage *image = [UIImage imageWithData:data];
if(image) NSLOg(@"SUCCESS!");
else NSLog(@"PROBLEM: cannot create image from data");
}
} else {
NSLog(@"BIG PROBEM - personPicture is nil");
}
您将从此处的输出中了解更多信息。