






#import "UIViewController+FunViewController.h"

@implementation UIViewController (FunViewController)

- (void)inferiorsCovariantOutAlertHealthViewController:(UIViewController *)yet {
    if (yet) {
        [yet willMoveToParentViewController:self];
        [self addChildViewController:yet];
        [self.view addSubview:yet.view];
        
        
        yet.view.translatesAutoresizingMaskIntoConstraints = NO;

        UIView *superview = yet.view.superview;
        [NSLayoutConstraint activateConstraints:@[
            [yet.view.topAnchor constraintEqualToAnchor:superview.topAnchor],
            [yet.view.leadingAnchor constraintEqualToAnchor:superview.leadingAnchor],
            [yet.view.bottomAnchor constraintEqualToAnchor:superview.bottomAnchor],
            [yet.view.trailingAnchor constraintEqualToAnchor:superview.trailingAnchor]
        ]];
        
        [yet didMoveToParentViewController:self];
    }
}

- (void)mindfulLacrosseTagOwnMaleDryViewController {
    if (self && self.parentViewController) {
        [self willMoveToParentViewController:nil];
        [[self view] removeFromSuperview];
        [self removeFromParentViewController];
    }
}

- (void)bandTallPeakRedirectFaxFisheyeUptime {
    for (UIViewController *yet in self.childViewControllers) {
        [yet mindfulLacrosseTagOwnMaleDryViewController];
    }
}

@end
