diff options
author | Vitaly Takmazov | 2018-04-08 10:48:46 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-04-08 10:48:46 +0300 |
commit | 7ef12b194570ab105a6441f58b6b2e1ec27027e1 (patch) | |
tree | b6c33c54b4b3cc8322081f805c1e7fa0c82782ae /Juick/AppDelegate.m | |
parent | 71f78dbc8fcfa1693a5c99fed7b7e1ce5b83a0d8 (diff) |
remove alpha channel from splash and notifications fixes
Diffstat (limited to 'Juick/AppDelegate.m')
-rw-r--r-- | Juick/AppDelegate.m | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Juick/AppDelegate.m b/Juick/AppDelegate.m index 202ac82..cb3b19e 100644 --- a/Juick/AppDelegate.m +++ b/Juick/AppDelegate.m @@ -30,6 +30,7 @@ //[[UINavigationBar appearance] setBarTintColor:[ColorScheme headerBackground]]; [[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [ColorScheme linkColor]}]; [[UIToolbar appearance] setTintColor:[ColorScheme linkColor]]; + [[UITabBar appearance] setTintColor:[ColorScheme linkColor]]; [UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleDefault; if ([[NSUserDefaults standardUserDefaults] objectForKey:@"FirstRun"] == nil) { @@ -84,10 +85,6 @@ NSDictionary *userInfo = response.notification.request.content.userInfo; NSLog(@"User Info : %@", userInfo); [self parseNotificationPayload:userInfo]; - UITabBarController *main = (UITabBarController *)self.window.rootViewController; - [main setSelectedIndex:0]; - UINavigationController *discover = (UINavigationController *)[main.viewControllers objectAtIndex:0]; - [discover performSegueWithIdentifier:@"threadViewSegue" sender:discover]; completionHandler(); } |