基于UITabBarController的程序中如何释放对象?
我想在基于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需释放您保留的所有内容即可。我认为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.
您仍然可以释放保留的任何内容,而不必在 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.