I'm using ViewDeck library to use side panel functionality and it works fine. My application needs the centerViewController to be reloaded while I click some button from LeftViewController.
and it should be reloaded after appearing the centerView.
#import TCenterViewController.h
....
- (void)ViewDidAppear:(BOOL)animated{
// code to reload the view
}
And m calling it from LeftViewController.
[self.viewDeckController.centerController viewDidAppear:NO];
Its working. but taking the time to load before the view appears. how can I reduce the delay??