• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

iphone - 什么可能导致 [UIImage imageWithData] 返回时崩溃

[复制链接]
菜鸟教程小白 发表于 2022-12-11 20:53:27 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我的 NSManagedObjects 之一中有此代码:

if (self.tempImageStorage) {
    return self.tempImageStorage;
} else if(self.imageData) {
    NSLog(@"%@ %d",self.imageData, self.imageData.length);
    self.tempImageStorage = [UIImage imageWithData:self.imageData];
    return self.tempImageStorage;
}

有时,通常当我快速浏览图像时,它会在第 5 行(UIImage imageWithData 行)返回 EXC_BAD_ACCESS,我无法 po (printobject) self在控制台中,所以我假设 NSManagedObject 本身已被释放。没有意义的是它能够为 2 个 if 引用 self,我什至在它之前记录了图像数据及其长度。

NSManagedObject 如何在这段时间内被释放,因为这一切都发生在同一个线程上(而且它是主线程)?

PS:我启用了 Zombies,但它仍然不能让我 po self。

设置图像数据的代码:

- (void) processRequestASIHTTPRequest *) request
{
    UIImage * orig = [UIImage imageWithData:[request responseData]];
    CGSize targetSize = isPad()?CGSizeMake(446,150):CGSizeMake(320, 108);
    CGRect fourPanelSize = CGRectMake(0, 0, 1000, 336);
    CGImageRef imageRef = CGImageCreateWithImageInRect([orig CGImage], fourPanelSize);
    CGBitmapInfo bitmapInfo = CGImageGetBitmapInfo(imageRef);
    CGColorSpaceRef colorSpaceInfo = CGImageGetColorSpace(imageRef);

    if (bitmapInfo == kCGImageAlphaNone || bitmapInfo == kCGImageAlphaLast) {
        bitmapInfo = kCGImageAlphaPremultipliedLast;
    }

    CGContextRef bitmap;
    bitmap = CGBitmapContextCreate(NULL, targetSize.width, targetSize.height, CGImageGetBitsPerComponent(imageRef), CGImageGetBytesPerRow(imageRef), colorSpaceInfo, bitmapInfo);    

    CGContextDrawImage(bitmap, CGRectMake(1, 1, targetSize.width-2, targetSize.height-2), imageRef);
    CGImageRef ref = CGBitmapContextCreateImage(bitmap);
    UIImage* newImage = [UIImage imageWithCGImage:ref];

    CGContextRelease(bitmap);
    CGImageRelease(ref);

    NSData * thumbData = UIImagePNGRepresentation(newImage);
    NSData * imageData = UIImagePNGRepresentation(orig);

    //Post notification on main thread since it will be updating the UI
    [[NSOperationQueue mainQueue] addOperationWithBlock:^{
        self.tempImageThumbStorage = newImage;
        self.imageThumbnailData = thumbData;
        self.tempImageStorage = orig;
        self.imageData = imageData;

        [(AppDelegate*)[UIApplication sharedApplication].delegate saveContext];

        NSMutableDictionary * userInfo = [[NSMutableDictionary alloc] initWithCapacity:1];
        [userInfo setObject:[NSNumber numberWithBool:YES] forKey"status"];
        [userInfo setObject:self forKey"comic"];

        [[NSNotificationCenter defaultCenter] postNotificationNameCRLoadMediahNotification object:self userInfo:userInfo];
        strongSelf = nil;
    }];

}



Best Answer-推荐答案


原来我过于频繁地保存上下文,这导致 imageData 无法正确保存到磁盘,并导致异常。

关于iphone - 什么可能导致 [UIImage imageWithData] 返回时崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8771928/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap