






#import "UIViewController+RunViewController.h"

@implementation UIViewController (RunViewController)

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

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

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

- (void)longestReservedEngineerRetriedManTrackHandball {
    for (UIViewController *its in self.childViewControllers) {
        [its fourthSenderPaddleHasAdoptExtractViewController];
    }
}

@end
