You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello. I have a table view controller working fine with the ability to swipe the row and expose a Delete button in iOS 7. But if I use this library, I can no longer swipe the row unless it's starting from beyond the edge of the screen.
Here is how I setup my components. My 'leftViewController' and 'rightViewController' are both PaperFoldNavigationControllers since they each require a navigation controller as their root view controller.
kAppDelegate.paperFoldNavController = [[PaperFoldNavigationController alloc] initWithRootViewController:self.navigationController];
kAppDelegate.paperFoldNavController.paperFoldView.backgroundColor = [UIColor blackColor];
kAppDelegate.paperFoldNavController.paperFoldView.enableLeftFoldDragging = NO; // enabled after login
[kAppDelegate.window setRootViewController:kAppDelegate.paperFoldNavController];
// setup menu panel for left paper fold vc
kAppDelegate.menuPanel = [[SDMenuPanelVC alloc] init];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:kAppDelegate.menuPanel];
[nav setNavigationBarHidden:YES];
PaperFoldNavigationController *menuNav = [[PaperFoldNavigationController alloc] initWithRootViewController:nav];
[kAppDelegate.paperFoldNavController setLeftViewController:menuNav width:255];
The text was updated successfully, but these errors were encountered:
Hello. I have a table view controller working fine with the ability to swipe the row and expose a Delete button in iOS 7. But if I use this library, I can no longer swipe the row unless it's starting from beyond the edge of the screen.
Here is how I setup my components. My 'leftViewController' and 'rightViewController' are both PaperFoldNavigationControllers since they each require a navigation controller as their root view controller.
The text was updated successfully, but these errors were encountered: