21 lines
448 B
Objective-C
Executable File
21 lines
448 B
Objective-C
Executable File
//
|
|
// BigGiftAlertView.h
|
|
// romantic
|
|
//
|
|
// Created by 八角_马方圆 on 2021/12/18.
|
|
// Copyright © 2021 romantic. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface BigGiftAlertView : UIView
|
|
@property (weak, nonatomic) IBOutlet UIImageView *displayMaskView;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *giftImgV;
|
|
@property (weak, nonatomic) IBOutlet UILabel *giftNameLab;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|