1

I am currently working on an iOS 7 app. I've successfully implemented the ECSlidingViewController, however i'm having a minor issue when dealing with a NavigationViewController.

The pan gesture to reveal the menu works, however when I try to slide the view back it will not work. This gesture works on normal UIViewControllers flawlessly.

The strange thing is that when I tap the NavigationViewController it slides back, it's just the pan gesture that for some reason isn't enabled.

Any help, suggestions, or even guesses as to what might be the problem is much appreciated.

rmaddy
  • 314,917
  • 42
  • 532
  • 579
deleteme
  • 61
  • 1
  • 6
  • Need some more context on how you have your sliding view controller setup. Are you setting the `resetStrategy`? Which view are you adding the `panGesture` to? – Michael Enriquez Nov 16 '13 at 01:21

1 Answers1

0

I believe that happens when you set the panGesture to one of the NavigationViewController's ViewController's view. Try setting it to the NavigationViewController's view.

Ghar
  • 625
  • 1
  • 7
  • 19