// // QXMineServiceCell.h // QXLive // // Created by 启星 on 2025/5/9. // #import NS_ASSUME_NONNULL_BEGIN @protocol QXMineServiceCellDelegate @optional -(void)didClickServiceWithBtn:(UIButton*)button title:(NSString*)title; @end @interface QXMineServiceCell : UITableViewCell @property (nonatomic,weak)iddelegate; -(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