Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/ios.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarinofaggiana <ios@nextcloud.com>2022-08-02 19:41:44 +0300
committermarinofaggiana <ios@nextcloud.com>2022-08-02 19:41:44 +0300
commitc79ca138f5db0a95cfd8f336c937fe286dda51aa (patch)
tree1254fbf115a010b553139334f867c6a168a0bb27 /iOSClient
parentef0090cfd241e22590cc00d74dfbf4226a07d578 (diff)
add extensions
Signed-off-by: marinofaggiana <ios@nextcloud.com>
Diffstat (limited to 'iOSClient')
-rw-r--r--iOSClient/Extensions/UINavigationController+Extension.swift32
-rw-r--r--iOSClient/Extensions/UITabBarController+Extension.swift32
-rw-r--r--iOSClient/Extensions/UIViewController+Extension.swift64
-rw-r--r--iOSClient/Main/AudioRecorder/NCAudioRecorderViewController.swift4
-rw-r--r--iOSClient/Main/NCFunctionCenter.swift4
5 files changed, 136 insertions, 0 deletions
diff --git a/iOSClient/Extensions/UINavigationController+Extension.swift b/iOSClient/Extensions/UINavigationController+Extension.swift
new file mode 100644
index 000000000..e0e987df6
--- /dev/null
+++ b/iOSClient/Extensions/UINavigationController+Extension.swift
@@ -0,0 +1,32 @@
+//
+// UINavigationController+Extension.swift
+// Nextcloud
+//
+// Created by Marino Faggiana on 02/08/2022.
+// Copyright © 2022 Marino Faggiana. All rights reserved.
+//
+// Author Marino Faggiana <marino.faggiana@nextcloud.com>
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
+//
+
+import Foundation
+
+extension UINavigationController {
+
+ // https://stackoverflow.com/questions/6131205/how-to-find-topmost-view-controller-on-ios
+ override func topMostViewController() -> UIViewController {
+ return self.visibleViewController!.topMostViewController()
+ }
+}
diff --git a/iOSClient/Extensions/UITabBarController+Extension.swift b/iOSClient/Extensions/UITabBarController+Extension.swift
new file mode 100644
index 000000000..66e57c535
--- /dev/null
+++ b/iOSClient/Extensions/UITabBarController+Extension.swift
@@ -0,0 +1,32 @@
+//
+// UITabBarController+Extension.swift
+// Nextcloud
+//
+// Created by Marino Faggiana on 02/08/2022.
+// Copyright © 2022 Marino Faggiana. All rights reserved.
+//
+// Author Marino Faggiana <marino.faggiana@nextcloud.com>
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
+//
+
+import Foundation
+
+extension UITabBarController {
+
+ // https://stackoverflow.com/questions/6131205/how-to-find-topmost-view-controller-on-ios
+ override func topMostViewController() -> UIViewController {
+ return self.selectedViewController!.topMostViewController()
+ }
+}
diff --git a/iOSClient/Extensions/UIViewController+Extension.swift b/iOSClient/Extensions/UIViewController+Extension.swift
new file mode 100644
index 000000000..172dccb03
--- /dev/null
+++ b/iOSClient/Extensions/UIViewController+Extension.swift
@@ -0,0 +1,64 @@
+//
+// UIViewController+Extension.swift
+// Nextcloud
+//
+// Created by Marino Faggiana on 02/08/2022.
+// Copyright © 2022 Marino Faggiana. All rights reserved.
+//
+// Author Marino Faggiana <marino.faggiana@nextcloud.com>
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
+//
+
+import Foundation
+
+extension UIViewController {
+
+ // https://stackoverflow.com/questions/6131205/how-to-find-topmost-view-controller-on-ios
+ @objc func topMostViewController() -> UIViewController {
+ // Handling Modal views
+ if let presentedViewController = self.presentedViewController {
+ return presentedViewController.topMostViewController()
+ }
+ // Handling UIViewController's added as subviews to some other views.
+ else {
+ for view in self.view.subviews {
+ // Key property which most of us are unaware of / rarely use.
+ if let subViewController = view.next {
+ if subViewController is UIViewController {
+ if let viewController = subViewController as? UIViewController {
+ return viewController.topMostViewController()
+ }
+ }
+ }
+ }
+ return self
+ }
+ }
+
+ // https://stackoverflow.com/questions/23620276/how-to-check-if-a-view-controller-is-presented-modally-or-pushed-on-a-navigation
+ var isModal: Bool {
+ if let index = navigationController?.viewControllers.firstIndex(of: self), index > 0 {
+ return false
+ } else if presentingViewController != nil {
+ return true
+ } else if navigationController?.presentingViewController?.presentedViewController == navigationController {
+ return true
+ } else if tabBarController?.presentingViewController is UITabBarController {
+ return true
+ } else {
+ return false
+ }
+ }
+}
diff --git a/iOSClient/Main/AudioRecorder/NCAudioRecorderViewController.swift b/iOSClient/Main/AudioRecorder/NCAudioRecorderViewController.swift
index 940389d16..c7835f016 100644
--- a/iOSClient/Main/AudioRecorder/NCAudioRecorderViewController.swift
+++ b/iOSClient/Main/AudioRecorder/NCAudioRecorderViewController.swift
@@ -63,6 +63,10 @@ class NCAudioRecorderViewController: UIViewController, NCAudioRecorderDelegate {
super.viewWillAppear(animated)
}
+ override func viewDidAppear(_ animated: Bool) {
+ super.viewDidAppear(animated)
+ }
+
override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
super.traitCollectionDidChange(previousTraitCollection)
}
diff --git a/iOSClient/Main/NCFunctionCenter.swift b/iOSClient/Main/NCFunctionCenter.swift
index d15b19ac9..a075e346e 100644
--- a/iOSClient/Main/NCFunctionCenter.swift
+++ b/iOSClient/Main/NCFunctionCenter.swift
@@ -459,7 +459,11 @@ import Photos
var topNavigationController: UINavigationController?
var pushServerUrl = NCUtilityFileSystem.shared.getHomeServer(account: appDelegate.account)
+ let mostViewController = UIApplication.shared.keyWindow!.rootViewController!.topMostViewController()
+ let isPresented = mostViewController.presentedViewController
+
appDelegate.activeViewController?.navigationController?.popToRootViewController(animated: false)
+
if let tabBarController = appDelegate.window?.rootViewController as? UITabBarController {
tabBarController.selectedIndex = 0
if let navigationController = tabBarController.viewControllers?.first as? UINavigationController {