Files
featherVoice/QXLive/活动/巡乐会/QXMeetActivityRankView.h

38 lines
1.2 KiB
C
Raw Normal View History

2025-10-20 09:43:10 +08:00
//
// QXMeetActivityRankView.h
// QXLive
//
// Created by 启星 on 2025/8/30.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface QXMeetActivityRankView : UIView
-(void)showInView:(UIView *)view;
@property (nonatomic,strong)NSString *roomId;
@end
@interface QXMeetRankCell : UITableViewCell
@property (nonatomic,strong)UIImageView *giftImageView;
@property (nonatomic,strong)UILabel *giftInfoLabel;
@property (nonatomic,strong)UILabel *recieveInfoLabel;
@property (nonatomic,strong)UILabel *timeLabel;
@property (nonatomic,strong)UIView *bottomLine;
@property (nonatomic,strong)QXActivityRecordModel *model;
+(instancetype)cellWithTableView:(UITableView*)tableView;
@end
@interface QXMeetRankLuckCell : UITableViewCell
@property (nonatomic,strong)UIImageView *giftImageView;
@property (nonatomic,strong)UILabel *giftInfoLabel;
@property (nonatomic,strong)UILabel *recieveInfoLabel;
@property (nonatomic,strong)UILabel *timeLabel;
@property (nonatomic,strong)UILabel *numberLabel;
@property (nonatomic,strong)UIView *bottomLine;
@property (nonatomic,strong)QXActivityRecordModel *model;
+(instancetype)cellWithTableView:(UITableView*)tableView;
@end
NS_ASSUME_NONNULL_END