Michal Gumny
Michal Gumny

Reputation: 1770

JASidePanel Swipe doesn't work after push new controller on navigation stack

I use JaSidePanel to achieve effect like in Facebook App. But I have some problem with it.

storyboard

(1) is subclass of JASidePanelController, Navigation Controller is added as center panel. Everything works fine, but after I push new View Controller to Navigation Controller I'm not able to make swip gesture to show Table View (4 - Left Panel). Is there some way around or I'm doing something wrong.

[EDIT] Ok I found why this did occur, JaSidePanel has property panningLimitedToTopViewController that has to be set to NO in order to allow swipe gesture on diffrent view controller that one on top.

Upvotes: 3

Views: 1218

Answers (1)

serdaryillar
serdaryillar

Reputation: 413

jaSidePanelController.panningLimitedToTopViewController = NO;

Upvotes: 3

Related Questions