






#import "InteriorAlarmController.h"
#import "OwnMarkViewController.h"

@interface InteriorAlarmController ()

@end

@implementation InteriorAlarmController


- (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 *catView = self.topViewController.view;
    
    point = [catView.layer convertPoint:point fromLayer:self.view.layer];
    
    OwnMarkViewController *yet = (OwnMarkViewController *)self.topViewController;
    if (![catView.layer containsPoint:point]) {
        [yet kitSmoothingSunActiveGallons:touches withEvent:event];
    }else{  
        [super touchesBegan:touches withEvent:event];
    }
}

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