27 lines
524 B
C
27 lines
524 B
C
|
|
//
|
||
|
|
// ZhuanzhuanLotteryItem.h
|
||
|
|
// romantic
|
||
|
|
//
|
||
|
|
// Created by Xmac on 2024/7/11.
|
||
|
|
// Copyright © 2024 romantic. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface ZhuanzhuanLotteryItem : UIView
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *bigbgImg;
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *bgImgV;
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *giftPriceLab;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *giftNameLabel;
|
||
|
|
|
||
|
|
-(void)onUpdateBigUI;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|