泄露的 16 字节 UIImage 能说明什么?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UIImage
只是CGImageRef
的一个薄包装;很可能你在某处(或类似的东西)有一个未初始化的UIImage
:UIImage
s are just a thin wrapper aroundCGImageRef
s; most likely you have an uninitializedUIImage
somewhere (or something similar):