37 lines
1.2 KiB
C
37 lines
1.2 KiB
C
|
|
//
|
||
|
|
// ZXYResultView.h
|
||
|
|
// SweetParty
|
||
|
|
//
|
||
|
|
// Created by MAC on 2024/5/6.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "ZXYBoxModel.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface ZXYResultView : UIView
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *touchImgV;
|
||
|
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *mainHeightCon;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *bgImgV;
|
||
|
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *yueqi1CenterXCon;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *yueqiImgV_1;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *yueqiLab_1;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *yueqiImgV_2;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *yueqiLab_2;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIView *giftBgView;
|
||
|
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *gift1CenterXCon;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *giftImgV_1;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *giftLab_1;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *giftImgV_2;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *giftLab_2;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIButton *confirmBtn;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *noWinLab;
|
||
|
|
|
||
|
|
- (void)onShowWith:(NSInteger)type model:(ZXYBoxModel *)model;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|