scanCharactersFromSet:intoString: 是否创建自动释放的字符串?

发布于 2024-12-02 13:54:35 字数 179 浏览 1 评论 0原文

使用 Instruments 时,此方法似乎存在泄漏 (scanCharactersFromSet:intoString:)。我没有释放放入 intoString 中的变量

此方法是否在方法的 intoString 部分中创建保留或自动释放的字符串?

While using Instruments, it seems like there is a leak coming from this method (scanCharactersFromSet:intoString:). I am not releasing the variable that gets put into intoString

Does this method create a retained or an autoreleased string in the intoString part of the method?

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

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

发布评论

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

评论(1

爱本泡沫多脆弱 2024-12-09 13:54:35

根据 内存管理规则您不拥有通过引用返回的对象。因此,你一定不能释放它们。

泄漏一定是在其他地方。

According to the Memory Management Rules, you don’t own objects returned by reference. Therefore, you must not release them.

The leak must be elsewhere.

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