26 lines
446 B
Objective-C
Executable File
26 lines
446 B
Objective-C
Executable File
//
|
|
// BigGiftAlertView.m
|
|
// romantic
|
|
//
|
|
// Created by 八角_马方圆 on 2021/12/18.
|
|
// Copyright © 2021 romantic. All rights reserved.
|
|
//
|
|
|
|
#import "BigGiftAlertView.h"
|
|
|
|
@implementation BigGiftAlertView
|
|
|
|
- (void)awakeFromNib {
|
|
[super awakeFromNib];
|
|
// WEAK_SELF
|
|
// [self.displayMaskView dg_Tapped:^{
|
|
// [weakSelf removeFromSuperview];
|
|
// }];
|
|
}
|
|
|
|
- (IBAction)onReceive:(id)sender {
|
|
[self removeFromSuperview];
|
|
}
|
|
|
|
@end
|