我正在使用此 SO 答案提供的技术在 SFSafariViewController 中预加载一些 URL,如下所示:
addChildViewController(svc)
svc.didMoveToParentViewController(self)
view.addSubview(svc.view)
我尝试使用以下代码删除 Safari View 控制器:
svc.willMoveToParentViewController(nil)
svc.view.removeFromSuperview()
svc.removeFromParentViewController()
现在我可以预加载 URL 并毫无问题地显示 Safari 视图。但是,在我重复该过程(预加载/显示/删除)几次(可能超过 30 次)后,应用程序将由于一些内存问题而崩溃,因为日志显示Memory level is not normal or this app was killed by jetsam
应用程序何时崩溃。
在崩溃之前,我看到了一些关于可能泄漏警告的日志:
<Warning>: notify name "UIKeyboardSpringBoardKeyboardShow" has been registered 20 times - this may be a leak
<Warning>: notify name "com.apple.SafariViewService-com.apple.uikit.viewService.connectionRequest" has been registered 20 times - this may be a leak
删除 Safari 视图控制器时我是否正确执行此操作?我错过了什么吗?或者有什么建议可以解决这个问题?