I am currently working on an application where I use SWRevealController and an UINavigation controller.
On a certain point in the app I push the SWRevealController on the UINavigation stack where I present my main menu, which is the rear controller and the front controller where the content is located. When I click on a certain Item on the front controller I want to push that controller on the top of the stack of the UINavigation stack but, the SWRevealController doesn't have an function or property to do that, it only has
- (void)pushFrontViewController:(UIViewController *)frontViewController animated:(BOOL)animated
and the normal
- (void)presentViewController:(UIViewController *)viewControllerToPresent animated: (BOOL)flag completion:(void (^)(void))completion NS_AVAILABLE_IOS(5_0);
Did someone find a way to push controllers on the navigation stack?
0 comments:
Post a Comment