UITabBarController UINavigationController 内部的内存管理问题
我必须在 UINavigationController 中使用 UITabBarController 。 一切似乎都是正确的,但如果我记录选项卡的 dealloc 调用,就会发生一些奇怪的事情。
如果我不触摸任何东西,只是后退按钮,则会调用每个选项卡的所有释放。 如果我切换到任何其他选项卡,然后点击后退按钮,第一个选项卡的释放将不会被调用,但其他选项卡会被调用。
这有什么问题吗?
I have to use a UITabBarController inside UINavigationController. Everything seems to be right, but if i log the dealloc calls of the tabs some strange thing happens.
If I don't touch eanything just the back button, all dealloc of each tabs are called.
If I switch to any other tab and than I tap the back button the dealloc of the first tab won't be called but the others will.
What can be wrong whit that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这个SO问题。 基本上,导航控制器内的选项卡栏控制器不受正式支持,但您可以通过使用不带 UITabBarController 的选项卡栏来模仿该行为。
Take a look at this SO question. Basically, a tab bar controller inside a nav controller isn't officially supported, but you can mimic the behavior by using a tab bar without a UITabBarController.