34 lines
521 B
Objective-C
Executable File
34 lines
521 B
Objective-C
Executable File
//
|
|
// YYVipChangeAlert.m
|
|
// SweetParty
|
|
//
|
|
// Created by bj_szd on 2022/6/9.
|
|
//
|
|
|
|
#import "YYVipChangeAlert.h"
|
|
|
|
@interface YYVipChangeAlert ()
|
|
|
|
@end
|
|
|
|
@implementation YYVipChangeAlert
|
|
|
|
- (void)awakeFromNib {
|
|
[super awakeFromNib];
|
|
|
|
[self.confirmBtn setJianBianWithCGSize:CGSizeMake(155, 40)];
|
|
}
|
|
|
|
- (IBAction)onConfirm:(id)sender {
|
|
if (self.onCompleteBlock) {
|
|
self.onCompleteBlock();
|
|
}
|
|
[self removeFromSuperview];
|
|
}
|
|
|
|
- (IBAction)onCancel:(id)sender {
|
|
[self removeFromSuperview];
|
|
}
|
|
|
|
@end
|