This commit is contained in:
Ali
2023-08-11 14:03:33 +04:00
parent eaaade13f2
commit 9d706c8c7f
2 changed files with 15 additions and 0 deletions

View File

@@ -63,6 +63,11 @@ class ShareRootController: UIViewController {
self.impl?.viewWillDisappear()
}
override func viewDidDisappear(_ animated: Bool) {
super.viewDidDisappear(animated)
self.impl?.viewWillDisappear()
}
override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
self.impl?.viewDidLayoutSubviews(view: self.view, traitCollection: self.traitCollection)