Closing ECSlidingViewController menu

泄露秘密 提交于 2019-12-05 06:30:37

ECSlidingViewController has methods for this: anchorTopViewToRightAnimated:, anchorTopViewToLeftAnimated: and resetTopViewAnimated:.

Example in your top view controller:

[self.slidingViewController anchorTopViewToRightAnimated:YES]

ECSlidingViewController provides a category for UIViewController adding this slidingViewController property.

You may also want to use ECSlidingViewController's currentTopViewPosition to determine if your button should show your menu or hide it in the current context.

I have came up with this question and above answer helps me to resolve it. But I just need to add more detailed answer with code example, so others might get benefit from this if they faced such a problem.

- (IBAction)showSlidingMenu:(id)sender {
   [self.slidingViewController anchorTopViewToRightAnimated:YES];
   if ([self.slidingViewController currentTopViewPosition] == ECSlidingViewControllerTopViewPositionAnchoredRight) {
      [self.slidingViewController resetTopViewAnimated:YES];
   }
}
  • Please note I am animating the top view controller to Right, so I am checking whether top view position is ECSlidingViewControllerTopViewPositionAnchoredRight.
  • Similarly top view position has ECSlidingViewControllerTopViewPositionAnchoredLeft if you are animating to the left.
  • If menu is not showing top view position will get ECSlidingViewControllerTopViewPositionCentered.

+1 for the question and accepted answer

Thanks.

According to "ECSlidingViewController sample project" you need to put these 4 lines in ViewWillAppear of FirstTopController(e.g TransitionViewController):

self.slidingViewController.topViewAnchoredGesture = ECSlidingViewControllerAnchoredGestureTapping | ECSlidingViewControllerAnchoredGesturePanning;
self.slidingViewController.customAnchoredGestures = @[];
[self.navigationController.view removeGestureRecognizer:self.dynamicTransitionPanGesture];
[self.navigationController.view addGestureRecognizer:self.slidingViewController.panGesture];

These 4 lines are being used in delegate method of tableview. It might be possible you're not using tableview so these 4 lines are not calling.

Best of Luck..

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!