iOS-Slide-Menu icon indicating copy to clipboard operation
iOS-Slide-Menu copied to clipboard

iOS Slide Menu with ability to add both left and right menu, and built in gesture recognizer. Similar to Path and Facebook

Results 97 iOS-Slide-Menu issues
Sort by recently updated
recently updated
newest added

Hi, kudos for this library, I love it. My app does not have a right menu and I want to use the swipe gesture to slide the menu and to...

I have some code in Left view controller ``` objective-c UIViewController *vc =[UIViewController new]; vc.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(dissmis:)]; [[SlideNavigationController sharedInstance] presentViewController:[[FCNavigationViewController alloc] initWithRootViewController:vc] animated:YES completion:nil]; - (void)...

I cant get this to work with UISplitViewController - I changed the navigation controllers linked to the splitviewcontroller to slidenavigationcontrollers but that did not work. Do you have any suggestions...

I have a UIViewController which has a custom segue animation. Therefore I use the `UIViewControllerTransitioningDelegate` and `UINavigationControllerDelegate` and implement this function `func navigationController(navigationController: UINavigationController, animationControllerForOperation operation: UINavigationControllerOperation, fromViewController fromVC: UIViewController,...

rename type 'Menu' to 'MenuSide' because 'Menu' is a very-very often name for classes types and other

Thank you for a very useful lib. But I have a little issue relate to UX in my app. I use SlideNavigationController with a Home view controller (root) and a...

I have a left menu, with a logout button, which goes back to the login screen. On the login screen it performs a push segue to the next screen "SearchViewController"...

On ios 8 the left and right menus aren't tappable. I am using a tableview to display the menu items, and that works fine on 7.1 and lower, but on...

1.4.7

the method moveHorizontallyToLocation in SlideNavtivationController.m if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"8.0")) { rect.origin.x = location; rect.origin.y = 0; } else { if (UIDeviceOrientationIsLandscape(orientation)) { rect.origin.x = 0; rect.origin.y = (orientation == UIDeviceOrientationLandscapeRight) ? location...