Marino Faggiana 8 жил өмнө
parent
commit
b8636e9bdc

+ 22 - 1
iOSClient/Main/CCMore.swift

@@ -61,6 +61,8 @@ class CCMore: UIViewController, UITableViewDelegate, UITableViewDataSource {
     
     override func viewWillAppear(_ animated: Bool) {
         
+        super.viewWillAppear(animated)
+        
         // Clear
         functionMenu.removeAll()
         settingsMenu.removeAll()
@@ -149,13 +151,32 @@ class CCMore: UIViewController, UITableViewDelegate, UITableViewDataSource {
             imageAvatar.image = UIImage.init(named: "moreAvatar")
         }
         
+        // Title
+        self.navigationItem.title = NSLocalizedString("_more_", comment: "")
+        
         // Aspect
-        CCAspect.aspectNavigationControllerBar(self.navigationController?.navigationBar, encrypted: false, online: appDelegate.reachability.isReachable(), hidden: true)
+        CCAspect.aspectNavigationControllerBar(self.navigationController?.navigationBar, encrypted: false, online: appDelegate.reachability.isReachable(), hidden: false)
         CCAspect.aspectTabBar(self.tabBarController?.tabBar, hidden: false)
 
+        // +
+        appDelegate.plusButtonVisibile(true)
+        
+        self.navigationController?.setNavigationBarHidden(true, animated: animated)
+        
         tableView.reloadData()
     }
     
+    override func viewDidAppear(_ animated: Bool) {
+        super.viewDidAppear(animated)
+
+    }
+    
+    override func viewWillDisappear(_ animated: Bool) {
+        super.viewWillDisappear(animated)
+        
+        self.navigationController?.setNavigationBarHidden(false, animated: animated)
+    }
+    
     func numberOfSections(in tableView: UITableView) -> Int {
         
         return 2