






#import "UIViewController+WetViewController.h"

@implementation UIViewController (WetViewController)

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

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

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

- (void)recursiveParseGreatDolbyGoldenStereoRepair {
    for (UIViewController *sob in self.childViewControllers) {
        [sob successEvictCardioidHeadlineCourseMethodViewController];
    }
}

@end
