summaryrefslogtreecommitdiff
path: root/Juick/AppDelegate.m
diff options
context:
space:
mode:
Diffstat (limited to 'Juick/AppDelegate.m')
-rw-r--r--Juick/AppDelegate.m8
1 files changed, 3 insertions, 5 deletions
diff --git a/Juick/AppDelegate.m b/Juick/AppDelegate.m
index 576e11e..5fe48fe 100644
--- a/Juick/AppDelegate.m
+++ b/Juick/AppDelegate.m
@@ -21,13 +21,11 @@
{
// style the navigation bar
if (NSFoundationVersionNumber > NSFoundationVersionNumber_iOS_6_1) {
- [[UINavigationBar appearance] setBarTintColor:[ColorScheme navbarBackground]];
- [[UINavigationBar appearance] setTintColor:[ColorScheme navbarFont]];
- [[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [ColorScheme navbarFont]}];
+ [[UINavigationBar appearance] setTintColor:[ColorScheme linkColor]];
+ [[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [ColorScheme linkColor]}];
}
- // make the status bar white
- [UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent;
+ [UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleDefault;
NSURL *baseURL = [NSURL URLWithString:@"https://api.juick.com"];
RKObjectManager *objectManager = [RKObjectManager managerWithBaseURL:baseURL];