我正在使用存储在Core Data中的Person对象填充UITableView。每个人都有firstName,lastName和image。图像是与单独的Image实体的关系,该实体具有称为Transformable类型的数据的属性。这是我存储与每个人相关联的图像的地方。
我正在填写表格:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"PersonCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
// Configure the cell...
Person *person = [self.fetchedResultsController objectAtIndexPath:indexPath];
NSMutableString *nameString = [[NSMutableString alloc] init];
if (person.firstName)
{
[nameString appendString:[NSString stringWithFormat:@"%@ ",person.firstName]];
}
if (person.lastName)
{
[nameString appendString:person.lastName];
}
cell.textLabel.text = nameString;
UIImage *image = person.image.data;
cell.imageView.image = image;
return cell;
}
当我运行我的应用程序时,我收到错误:
:CGAffineTransformInvert:奇异矩阵。
对表或数据库中的每个项目执行一次。
如果我注释掉这一行:
cell.imageView.image = image;
错误消失了。
有什么想法吗?这是我第一次在Core Data中存储二进制数据,也许它没有正确转换?
这就是我存储图像的方式:
UIImage *image = [info objectForKey:UIImagePickerControllerOriginalImage];
self.person = [Person personWithImage:image inManagedObjectContext:self.context];
和
+ (Person *)personWithImage: (UIImage *)image inManagedObjectContext:(NSManagedObjectContext *)context
{
Image *newImage = [NSEntityDescription insertNewObjectForEntityForName:@"Image" inManagedObjectContext:context];
newImage.data = image;
Person *newPerson = [NSEntityDescription insertNewObjectForEntityForName:@"Person"
inManagedObjectContext:context];
newPerson.image = newImage;
return newPerson;
}
感谢,
格里
答案 0 :(得分:2)
我仍然不知道为什么它发生在第一位,但我想这并不重要,因为它现在已经消失了。