Closed lorenzoPrimi closed 6 years ago
Solved with
- (BOOL)revealControllerPanGestureShouldBegin:(PBRevealViewController *)revealController direction:(PBRevealControllerPanDirection)direction{
if (direction == PBRevealControllerPanDirectionRight)
return YES;
else if (revealController.isLeftViewOpen)
return YES;
return NO;
}
Since I switched to this component my users reported that they can't delete anymore rows from the UITableView. Is maybe related to the open menu gesture? How do I fix it?
Thanks