Files
featherVoice/QXLive/Mine(音域)/View/家族/QXFamilyMemberCell.h

37 lines
1.2 KiB
C
Raw Normal View History

2025-11-28 22:43:06 +08:00
//
// QXFamilyMemberCell.h
// QXLive
//
// Created by 启星 on 2025/11/26.
//
#import <UIKit/UIKit.h>
#import "QXFamilyModel.h"
NS_ASSUME_NONNULL_BEGIN
2025-12-01 18:42:49 +08:00
@protocol QXFamilyMemberCellDelegate <NSObject>
2025-11-28 22:43:06 +08:00
2025-12-01 18:42:49 +08:00
@optional
-(void)needRefresh;
@end
2025-11-28 22:43:06 +08:00
@interface QXFamilyMemberCell : UITableViewCell
@property (weak, nonatomic) IBOutlet QXSeatHeaderView *headerView;
@property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
@property (weak, nonatomic) IBOutlet UICollectionViewFlowLayout *flowLayout;
@property (weak, nonatomic) IBOutlet UILabel *dayLabel;
@property (weak, nonatomic) IBOutlet UILabel *nameLabel;
@property (weak, nonatomic) IBOutlet UILabel *timesLabel;
@property (weak, nonatomic) IBOutlet UIButton *priceBtn;
@property (weak, nonatomic) IBOutlet UILabel *onlineLabel;
@property (weak, nonatomic) IBOutlet UIButton *todayPriceBtn;
@property (weak, nonatomic) IBOutlet UIButton *yestodayPriceBtn;
@property (weak, nonatomic) IBOutlet UIButton *continueBtn;
@property (strong, nonatomic) QXFamilyMemberModel *model;
2025-12-01 18:42:49 +08:00
@property (weak, nonatomic)id<QXFamilyMemberCellDelegate>delegate;
2025-11-28 22:43:06 +08:00
+(instancetype)cellWithTableView:(UITableView *)tableView;
@end
NS_ASSUME_NONNULL_END