is there any way to use the ECSlidingViewController to slide the menu from right to left ? the default is left to right
this code is working, the menu slide from left to right:
- (IBAction)menuButtonTapped:(id)sender {
[self.slidingViewController anchorTopViewToRightAnimated:YES];
}
this code is not working, i want the menu slide from right to left:
- (IBAction)menuButtonTapped:(id)sender {
[self.slidingViewController anchorTopViewToLeftAnimated:YES];
}