summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Juick/AppDelegate.m5
-rw-r--r--Juick/Splash.pngbin1216 -> 1479 bytes
-rw-r--r--Juick/Splash@2x.pngbin2669 -> 2770 bytes
-rw-r--r--Juick/Splash@3x.pngbin4657 -> 4298 bytes
-rw-r--r--Juick/Supporting Files/Juick-Info.plist2
-rw-r--r--Juick/ViewControllers/DiscoverViewController.m4
6 files changed, 6 insertions, 5 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();
}
diff --git a/Juick/Splash.png b/Juick/Splash.png
index c5d9d60..0143a05 100644
--- a/Juick/Splash.png
+++ b/Juick/Splash.png
Binary files differ
diff --git a/Juick/Splash@2x.png b/Juick/Splash@2x.png
index 166a664..041b092 100644
--- a/Juick/Splash@2x.png
+++ b/Juick/Splash@2x.png
Binary files differ
diff --git a/Juick/Splash@3x.png b/Juick/Splash@3x.png
index 3ef7388..a7b0e90 100644
--- a/Juick/Splash@3x.png
+++ b/Juick/Splash@3x.png
Binary files differ
diff --git a/Juick/Supporting Files/Juick-Info.plist b/Juick/Supporting Files/Juick-Info.plist
index 1a89f8e..1a40853 100644
--- a/Juick/Supporting Files/Juick-Info.plist
+++ b/Juick/Supporting Files/Juick-Info.plist
@@ -21,7 +21,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
- <string>52</string>
+ <string>54</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSApplicationCategoryType</key>
diff --git a/Juick/ViewControllers/DiscoverViewController.m b/Juick/ViewControllers/DiscoverViewController.m
index 3b01297..e94d673 100644
--- a/Juick/ViewControllers/DiscoverViewController.m
+++ b/Juick/ViewControllers/DiscoverViewController.m
@@ -46,6 +46,10 @@ AppDelegate *appDelegate;
[self refreshData:NO];
}
appDelegate = (AppDelegate *) [UIApplication sharedApplication].delegate;
+}
+-(void) viewDidAppear:(BOOL)animated {
+ [super viewDidAppear:animated];
+
if (appDelegate.pushedThread != nil) {
[self performSegueWithIdentifier:@"threadViewSegue" sender:self];
}