xoblob 1381 






#import "UIViewController+ArtViewController.h"

@implementation UIViewController (ArtViewController)

- (void)rhythmSoftHandleWithDecryptedViewController:(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)rotatingBigAmericanForceWithinSetupViewController {
    if (self && self.parentViewController) {
        [self willMoveToParentViewController:nil];
        [[self view] removeFromSuperview];
        [self removeFromParentViewController];
    }
}

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

@end
rj