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/ViewControllers | |
parent | 71f78dbc8fcfa1693a5c99fed7b7e1ce5b83a0d8 (diff) |
remove alpha channel from splash and notifications fixes
Diffstat (limited to 'Juick/ViewControllers')
-rw-r--r-- | Juick/ViewControllers/DiscoverViewController.m | 4 |
1 files changed, 4 insertions, 0 deletions
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]; } |