|
@@ -113,9 +113,9 @@
|
|
|
[self queryDatasourceWithReloadData:YES];
|
|
|
}
|
|
|
|
|
|
-- (void)viewDidAppear:(BOOL)animated
|
|
|
+- (void)viewWillAppear:(BOOL)animated
|
|
|
{
|
|
|
- [super viewDidAppear:animated];
|
|
|
+ [super viewWillAppear:animated];
|
|
|
|
|
|
// Color
|
|
|
[appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
|
|
@@ -123,7 +123,12 @@
|
|
|
|
|
|
// Plus Button
|
|
|
[appDelegate plusButtonVisibile:true];
|
|
|
+}
|
|
|
|
|
|
+- (void)viewDidAppear:(BOOL)animated
|
|
|
+{
|
|
|
+ [super viewDidAppear:animated];
|
|
|
+
|
|
|
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.001 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
|
|
|
[self reloadDatasource:nil action:k_action_NULL];
|
|
|
});
|