






#import "SubBoxCascadeController.h"
#import "ClosureViewController.h"

@interface SubBoxCascadeController ()

@end

@implementation SubBoxCascadeController


- (BOOL)shouldAutorotate {
    return self.topViewController.shouldAutorotate;
}

- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
    return self.topViewController.supportedInterfaceOrientations;
}

- (void)viewDidLoad {
    [super viewDidLoad];
    self.interactivePopGestureRecognizer.enabled = NO;
    [self setNavigationBarHidden:YES];
    self.view.backgroundColor = [UIColor.blackColor colorWithAlphaComponent:.3];
}

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {
    
    CGPoint point = [[touches anyObject] locationInView:self.view];
    
    UIView *eraView = self.topViewController.view;
    
    point = [eraView.layer convertPoint:point fromLayer:self.view.layer];
    
    ClosureViewController *did = (ClosureViewController *)self.topViewController;
    if (![eraView.layer containsPoint:point]) {
        [did enablingShelfFlagDisablesFar:touches withEvent:event];
    }else{  
        [super touchesBegan:touches withEvent:event];
    }
}

- (void)pushViewController:(ClosureViewController *)viewController animated:(BOOL)animated
{
    if (self.childViewControllers.count > 0) {
        viewController.redoHertzButton.hidden = NO;
    }else {
        viewController.redoHertzButton.hidden = YES;
    }
    [super pushViewController:viewController animated:animated];
    
}
- (void)dealloc {
    
}
@end
