23 lines
432 B
Objective-C
Executable File
23 lines
432 B
Objective-C
Executable File
//
|
|
// YYVipChangeAlert.h
|
|
// SweetParty
|
|
//
|
|
// Created by bj_szd on 2022/6/9.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface YYVipChangeAlert : UIView
|
|
|
|
@property (weak, nonatomic) IBOutlet UIButton *confirmBtn;
|
|
@property (weak, nonatomic) IBOutlet UILabel *titleLab;
|
|
@property (weak, nonatomic) IBOutlet UILabel *contentLab;
|
|
|
|
@property (nonatomic, copy) void(^onCompleteBlock)(void);
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|