summaryrefslogtreecommitdiff
path: root/Juick/AppDelegate.m
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2016-08-15 00:54:41 +0300
committerGravatar Vitaly Takmazov2016-08-15 00:54:41 +0300
commita778c55cd848b0d0d452a20e8eaf6a477c068ca3 (patch)
tree4806924f036eff97cbbd623c23234aea68afc80e /Juick/AppDelegate.m
parentc2a3fddc05e971351f919b1490869cb11e78ee30 (diff)
colors
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];