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

ios - 为什么会有 "potential leak"?

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

Xcode 的分析器提示存在“潜在的对象泄漏”。以下方法中的第一行突出显示:

- (void)retrieveBeginRestoreData {
    self.restoreContext = [self.image newARGBBitmapContext];
    if (!self.restoreContext) self.restoreData = nil;
    CGRect rect = {{0,0},self.image.size};

    CGContextDrawImage(self.restoreContext, rect, self.image.CGImage);
    self.restoreData = CGBitmapContextGetData(self.restoreContext);
}

我有一个这样声明的属性:

@property (nonatomic, assign) CGContextRef restoreContext

newARGBBitmapContext 由以下内容定义:

- (CGContextRef)newARGBBitmapContext {
    CGContextRef    context = NULL;
    CGColorSpaceRef colorSpace;
    void *          bitmapData;
    size_t             bitmapByteCount;
    size_t             bitmapBytesPerRow;

    // Get image width, height. We'll use the entire image.
    size_t pixelsWide = CGImageGetWidth(self.CGImage);
    size_t pixelsHigh = CGImageGetHeight(self.CGImage);

    // Declare the number of bytes per row. Each pixel in the bitmap in this
    // example is represented by 4 bytes; 8 bits each of red, green, blue, and
    // alpha.
    bitmapBytesPerRow   = (pixelsWide * 4);
    bitmapByteCount     = (bitmapBytesPerRow * pixelsHigh);

    // Use the generic RGB color space.
    //    colorSpace = CGColorSpaceCreateWithName(kCGColorSpaceGenericRGB);
    colorSpace = CGColorSpaceCreateDeviceRGB();
    if (colorSpace == NULL)
    {
        fprintf(stderr, "Error allocating color space\n");
        return NULL;
    }

    // Allocate memory for image data. This is the destination in memory
    // where any drawing to the bitmap context will be rendered.
    bitmapData = malloc( bitmapByteCount );
    if (bitmapData == NULL)
    {
        fprintf (stderr, "Memory not allocated!");
        CGColorSpaceRelease( colorSpace );
        return NULL;
    }

    // Create the bitmap context. We want pre-multiplied ARGB, 8-bits
    // per component. Regardless of what the source image format is
    // (CMYK, Grayscale, and so on) it will be converted over to the format
    // specified here by CGBitmapContextCreate.
    context = CGBitmapContextCreate (bitmapData,
                                     pixelsWide,
                                     pixelsHigh,
                                     8,      // bits per component
                                     bitmapBytesPerRow,
                                     colorSpace,
                                     (CGBitmapInfo)kCGImageAlphaPremultipliedFirst);
    if (context == NULL)
    {
        free (bitmapData);
        fprintf (stderr, "Context not created!");
    }

    // Make sure and release colorspace before returning
    CGColorSpaceRelease( colorSpace );

    return context;
}

我设法通过将 restoreContext 声明为头文件中的实例变量来解决此问题; “潜在泄漏”警告消失了。

问题:

  • 首先是什么问题?
  • 当我停止将 restoreContext 声明为属性时,这个问题是如何解决的?
  • 解决 restoreContext 被声明为属性的问题的正确方法是什么?



Best Answer-推荐答案


这一行

self.restoreContext = [self.image newARGBBitmapContext];

执行以下操作:

  1. 它(可能)创建一个 CGContext 的实例对象。

  2. 由于方法名称以 new 开头,因此应用了所有权转移。这意味着接收者(您的代码)负责发布它。

当这行代码第二次运行时,已经存在的CGContext实例的引用被覆盖而不释放实例,它指向。较旧的实例会泄漏。

关于ios - 为什么会有 "potential leak"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31110718/

回复

使用道具 举报

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

本版积分规则

关注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