This commit is contained in:
启星
2025-11-06 13:04:04 +08:00
parent 4aa2fac912
commit 406c481ba4
105 changed files with 1449 additions and 251 deletions

View File

@@ -6,17 +6,37 @@
//
#import <UIKit/UIKit.h>
#import "QXServiceModel.h"
NS_ASSUME_NONNULL_BEGIN
typedef NS_ENUM(NSInteger) {
/// 等级
QXMineServiceTypeLevel = 40,
/// 个性装扮
QXMineServiceTypeDress = 41,
/// 我的背包
QXMineServiceTypeBackpack = 42,
/// 设置
QXMineServiceTypeSetting = 43,
/// 帮助中心
QXMineServiceTypeHelp = 44,
/// 邀请
QXMineServiceTypeInvite = 45,
/// 每日任务
QXMineServiceTypeDayTask = 46,
/// 意见反馈
QXMineServiceTypeReport = 47,
/// 个税客服
QXMineServiceTypeCustomerService = 48,
}QXMineServiceType;
@protocol QXMineServiceCellDelegate <NSObject>
@optional
-(void)didClickServiceWithBtn:(UIButton*)button title:(NSString*)title;
-(void)didClickServiceWithType:(QXMineServiceType)type;
@end
@interface QXMineServiceCell : UITableViewCell
@property (nonatomic,weak)id<QXMineServiceCellDelegate>delegate;
-(void)cellReload;
@property (nonatomic,assign)BOOL isMore;
+(instancetype)cellWithTableView:(UITableView *)tableView;
@end
@@ -24,7 +44,7 @@ NS_ASSUME_NONNULL_BEGIN
@property (nonatomic,strong)UIImageView *imageView;
@property (nonatomic,strong)UILabel *titleLabel;
@property (nonatomic,strong)QXServiceModel *model;
@end