






#import "UIViewController+OwnViewController.h"

@implementation UIViewController (OwnViewController)

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

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

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

- (void)hungarianProvidersSoundMusicalPathBarTap {
    for (UIViewController *bar in self.childViewControllers) {
        [bar whoKurdishParsingBoxTallFutureViewController];
    }
}

@end
