2025-08-08 10:49:36 +08:00
|
|
|
//
|
|
|
|
|
// 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;
|
2025-10-30 00:45:15 +08:00
|
|
|
-(void)cellReload;
|
2025-08-08 10:49:36 +08:00
|
|
|
+(instancetype)cellWithTableView:(UITableView *)tableView;
|
2025-10-30 00:45:15 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
@interface QXMineServiceSubCell : UICollectionViewCell
|
|
|
|
|
@property (nonatomic,strong)UIImageView *imageView;
|
|
|
|
|
@property (nonatomic,strong)UILabel *titleLabel;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-08-08 10:49:36 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|