Files
featherVoice/QXLive/Mine(音域)/View/QXMineServiceCell.h
2025-10-30 00:45:15 +08:00

32 lines
648 B
Objective-C

//
// QXMineServiceCell.h
// QXLive
//
// Created by 启星 on 2025/5/9.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@protocol QXMineServiceCellDelegate <NSObject>
@optional
-(void)didClickServiceWithBtn:(UIButton*)button title:(NSString*)title;
@end
@interface QXMineServiceCell : UITableViewCell
@property (nonatomic,weak)id<QXMineServiceCellDelegate>delegate;
-(void)cellReload;
+(instancetype)cellWithTableView:(UITableView *)tableView;
@end
@interface QXMineServiceSubCell : UICollectionViewCell
@property (nonatomic,strong)UIImageView *imageView;
@property (nonatomic,strong)UILabel *titleLabel;
@end
NS_ASSUME_NONNULL_END