MichaelSSY
Results
11
comments of
MichaelSSY
> > > 解决这个问题了么兄弟,我也遇到了 > > > > > > 没有解决,我跑的是官方demo,确实存在内存泄漏。flutter页面走了dispose,壳控制器也走了deinit,就是FBFlutterViewContainer控制器没有释放。 > > 我这边解决了,不知道是不是跟你的场景一样,你可以试下我的方法。`deinit { print("\(type(of: self).description()) ----- deinit") // 如果有这个页面就释放 if YHAuthority.saleStatistics.isAuthed { newSaleStatisticsVC.detachFlutterEngineIfNeeded() newSaleStatisticsVC.notifyWillDealloc() } }` 在 UITabBarController...