在UITableViewCell中设置图像时,我得到<error>:CGAffineTransformInvert:奇异矩阵</error>

时间:2012-07-12 15:26:20

标签: iphone ios ios5

我正在使用存储在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;
}

感谢,

格里

1 个答案:

答案 0 :(得分:2)

好吧,我运气好想。我的uitableview使用单元格中的图像,我将全尺寸的相机图像放在那里,当然还遇到了一些内存问题。一旦我开始将图像大小调整为960x640,随机CGAffineTransformInvert错误就消失了!

我仍然不知道为什么它发生在第一位,但我想这并不重要,因为它现在已经消失了。