ECSlidingViewController inherits functionality from UINavigationController and I am currently trying to use
- (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated {
in my main view controller to act as a callback from back to the main view controller from the left view controller. The method is defined in the UINavigationDelegate class, so I had figured that it would be called on return to the main view controller, but alas, no call is ever made to it.
So, my question is simply regarding how to detect when the main view controller slides back into the screen, and calling some method afterwards.