ios潜在泄露如何解决?

发布于 2024-12-03 16:14:12 字数 107 浏览 1 评论 0原文

我分析了我的项目: 这是结果: 在此处输入图像描述

是什么意思以及如何解决这个问题?

I've analyzed my project:
and this is the result:
enter image description here

what means and how can I solve this?

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

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

发布评论

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

评论(2

扎心 2024-12-10 16:14:13

在使用 pdfURL 创建 pdf 后,您应该释放它。

尝试...

CGPDFDocumentRef pdf = CGPDFDocumentCreateWithURL(pdfURL);
CFRelease(pdfURL);

You should release pdfURL after you have used it to create pdf.

Try...

CGPDFDocumentRef pdf = CGPDFDocumentCreateWithURL(pdfURL);
CFRelease(pdfURL);
筱果果 2024-12-10 16:14:13

看来您可能想熟悉 内存核心基础管理编程指南,特别是所有权政策

简而言之,您必须 CFRelease() pdfURL 对象。 :-)

It looks like you might want to familiarise yourself with the Memory Management Programming Guide for Core Foundation, specifically the ownership policy.

In short, you have to CFRelease() the pdfURL object. :-)

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