我的
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user