diff --git a/Nextcloud.xcodeproj/project.pbxproj b/Nextcloud.xcodeproj/project.pbxproj index 3a9447037a..8bd5feb863 100644 --- a/Nextcloud.xcodeproj/project.pbxproj +++ b/Nextcloud.xcodeproj/project.pbxproj @@ -5790,7 +5790,7 @@ CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 0; + CURRENT_PROJECT_VERSION = 1; DEAD_CODE_STRIPPING = YES; DEBUG_INFORMATION_FORMAT = dwarf; DEVELOPMENT_TEAM = NKUJUXUJ3B; @@ -5857,7 +5857,7 @@ CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 0; + CURRENT_PROJECT_VERSION = 1; DEAD_CODE_STRIPPING = YES; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEVELOPMENT_TEAM = NKUJUXUJ3B; @@ -6133,7 +6133,7 @@ repositoryURL = "https://github.com/nextcloud/NextcloudKit"; requirement = { kind = exactVersion; - version = 7.3.0; + version = 7.3.1; }; }; F788ECC5263AAAF900ADC67F /* XCRemoteSwiftPackageReference "MarkdownKit" */ = { diff --git a/iOSClient/Main/NCMainTabBarController.swift b/iOSClient/Main/NCMainTabBarController.swift index a1fd88ef38..cf1b8dd8db 100644 --- a/iOSClient/Main/NCMainTabBarController.swift +++ b/iOSClient/Main/NCMainTabBarController.swift @@ -113,9 +113,17 @@ class NCMainTabBarController: UITabBarController { let moreView = NCMoreView(account: account, controller: self) let hostingController = UIHostingController(rootView: moreView) - hostingController.title = NSLocalizedString("_more_", comment: "") + hostingController.navigationItem.title = NSLocalizedString("_more_", comment: "") let navigationController = NCMoreNavigationController(rootViewController: hostingController) + + navigationController.tabBarItem = UITabBarItem( + title: NSLocalizedString("_more_", comment: ""), + image: UIImage(systemName: "ellipsis.circle.fill"), + selectedImage: UIImage(systemName: "ellipsis.circle.fill") + ) + navigationController.tabBarItem.tag = 104 + return navigationController } @@ -147,13 +155,6 @@ class NCMainTabBarController: UITabBarController { imageName: "bolt.fill", tag: 103 ) - - configureTabBarItem( - at: 4, - title: "_more_", - imageName: "ellipsis.circle.fill", - tag: 104 - ) } private func configureTabBarItem(at index: Int, title: String, imageName: String, tag: Int) {