소스 검색

Rewrite TabBarController

Marino Faggiana 8 년 전
부모
커밋
d7f8eaa647
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      iOSClient/AppDelegate.m

+ 4 - 1
iOSClient/AppDelegate.m

@@ -217,11 +217,14 @@
     [self.window setTintColor:COLOR_BRAND];
     
     UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
+    UITabBarController *tabBarController = [splitViewController.viewControllers firstObject];
     UINavigationController *navigationController = [splitViewController.viewControllers lastObject];
-    
+
     navigationController.topViewController.navigationItem.leftBarButtonItem = splitViewController.displayModeButtonItem;
     splitViewController.preferredDisplayMode = UISplitViewControllerDisplayModeAllVisible;
     
+    // Settings TabBar
+    
     // passcode
     [[BKPasscodeLockScreenManager sharedManager] setDelegate:self];