基于UITabBarController的程序中如何释放对象?

发布于 2024-11-06 02:35:16 字数 75 浏览 0 评论 0原文

我想在基于 UITabBarControllers 的编程中释放对象,所有选项卡栏项目同时启动,

那么我应该为此做什么?

I want to release objects in my programming based on UITabBarControllers, all tab bar items launches together at once,

so what should I do for this??

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

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

发布评论

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

评论(2

自此以后,行同陌路 2024-11-13 02:35:16

只需释放您保留的所有内容即可。我认为dealloc会在必要时被调用。

也许这会对您有所帮助:

Dealloc not call for ViewController;这是关于为什么使用 UITabBarCtrlr 时不调用 dealloc 的原因。

Just release all what you retained. I think dealloc will be called when necessary.

Maybe this will help you a bit:

Dealloc not called for ViewController; it's about why dealloc is not called when using UITabBarCtrlr.

凤舞天涯 2024-11-13 02:35:16

您仍然可以释放保留的任何内容,而不必在 dealloc 中执行此操作。只要在任何你想要的地方回收任何东西,然后将对象设置为零即可。在 dealloc 中,不要释放任何为零的东西,这样你是安全的。但是,您的 UITabBarController 可能仍然假定对象的有效性,因此由您来实现逻辑。

如果可能的话,您应该分配一个新的 UITabBarController。

You can still release anything that you retained, you don't have to do it in dealloc. Just recycle anything anywhere that you want to, and set the object to nil. In dealloc, don't release anything that is nil so you are safe. However, your UITabBarController might still assume the validity of the objects, so it's up to you for implementing the logic.

If possible, you should just allocate a new UITabBarController.

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