@@ -154,6 +154,10 @@ class NCViewerImage: UIViewController {
NCViewer.shared.toggleMenu(viewController: self, metadata: currentMetadata, webView: false, imageIcon: imageIcon)
}
+ deinit {
+ print("deinit NCViewerImage")
+ }
+
//MARK: - NotificationCenter
@objc func downloadedFile(_ notification: NSNotification) {
@@ -63,7 +63,7 @@ class NCViewerImageZoom: UIViewController {
deinit {
- print("")
+ print("deinit NCViewerImageZoom")
override func viewDidLoad() {
@@ -89,7 +89,7 @@ class NCViewerVideo: NSObject {
- print("deinit")
+ print("deinit NCViewerVideo")
func setupVideoLayer(imageVideoContainer: imageVideoContainerView?) {
@@ -83,6 +83,10 @@ class NCViewerVideoToolBar: UIView {
muteButton.setImage(NCUtility.shared.loadImage(named: "audioOff", color: .lightGray), for: .normal)
+ print("deinit NCViewerVideoToolBar")
func setBarPlayer(viewerVideo: NCViewerVideo) {
self.viewerVideo = viewerVideo