泄露的 16 字节 UIImage 能说明什么?

发布于 2024-08-02 17:07:22 字数 141 浏览 5 评论 0原文

16 字节相当小,对吧?我在应用程序中创建的 UIImage 都没有那么小,但 Leaks Instrument 报告泄漏的 UIimage 大小为 16 字节...有关于这可能是什么的线索吗?顺便说一句,还有一个 48 字节的 CALayer 对象被泄露......

16 Bytes is pretty small, right? None of the UIImages I create in my app are that small, yet the Leaks Instrument is reporting a leaked UIimage of size 16 Bytes... Any clues on what this could be? Incidentally, there was also a leaked CALayer object of 48 bytes...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如果没有你 2024-08-09 17:07:23

UIImage 只是 CGImageRef 的一个薄包装;很可能你在某处(或类似的东西)有一个未初始化的 UIImage

- (void)leakImage
{
    UIImage *leaked = [UIImage alloc];
}

UIImages are just a thin wrapper around CGImageRefs; most likely you have an uninitialized UIImage somewhere (or something similar):

- (void)leakImage
{
    UIImage *leaked = [UIImage alloc];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文