






#import "TwoSuccessViewController.h"

@interface TwoSuccessViewController ()

@end

@implementation TwoSuccessViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    self.twoCapCycle.opaque = NO;
    self.view.backgroundColor = [UIColor.blackColor colorWithAlphaComponent:0];
    
    self.catClipGray = self.dublinChest;
}

- (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];
    UIEdgeInsets mathAndIcy = [[MatchMenuManager shared] teacherDepthWindow].safeAreaInsets;
    mathAndIcy.top    += 10;
    mathAndIcy.left   += 10;
    mathAndIcy.bottom += 10;
    mathAndIcy.right  += 10;

    [self.view mas_makeConstraints:^(MASConstraintMaker *make) {
        make.edges.mas_equalTo(0);
    }];
    
    [self.twoCapCycle mas_makeConstraints:^(MASConstraintMaker *make) {
        make.edges.mas_equalTo(0);
    }];
}

@end
