summaryrefslogtreecommitdiff
path: root/Juick/AppDelegate.m
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2013-12-18 05:53:29 +0400
committerGravatar Vitaly Takmazov2013-12-18 05:53:29 +0400
commitce630eef61d4acd8f5c4e1d6a3a60780c5ec4af3 (patch)
tree7b3364a9e343ec728d7e4886c61c89330b096986 /Juick/AppDelegate.m
parenta4d2e426a36111a2da3683025ab129ef701d5a3f (diff)
cleanup and ios6 fixes
Diffstat (limited to 'Juick/AppDelegate.m')
-rw-r--r--Juick/AppDelegate.m10
1 files changed, 5 insertions, 5 deletions
diff --git a/Juick/AppDelegate.m b/Juick/AppDelegate.m
index a776b43..7ccaf13 100644
--- a/Juick/AppDelegate.m
+++ b/Juick/AppDelegate.m
@@ -11,7 +11,7 @@
#import "RevealPanelViewController.h"
#import "SWRevealViewController.h"
-#import "ColorsAndButtons.h"
+#import "ColorScheme.h"
#import "Message.h"
@implementation AppDelegate
@@ -20,10 +20,10 @@
{
// style the navigation bar
if (NSFoundationVersionNumber > NSFoundationVersionNumber_iOS_6_1) {
- [[UINavigationBar appearance] setBarTintColor:[ColorsAndButtons navbarBackground]];
- }
- [[UINavigationBar appearance] setTintColor:[ColorsAndButtons navbarFont]];
- [[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [ColorsAndButtons navbarFont]}];
+ [[UINavigationBar appearance] setBarTintColor:[ColorScheme navbarBackground]];
+ [[UINavigationBar appearance] setTintColor:[ColorScheme navbarFont]];
+ [[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [ColorScheme navbarFont]}];
+ }
// make the status bar white
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent;