29 lines
771 B
Objective-C
29 lines
771 B
Objective-C
//
|
|
// WodeUserAssetCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/3/20.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
@protocol MineHeaderItemsDelegate <NSObject>
|
|
-(void)tapDengjiAction;
|
|
-(void)tapGoldAction;
|
|
-(void)tapRenWuAction;
|
|
@end
|
|
|
|
@interface WodeUserAssetCell : UITableViewCell
|
|
@property (strong, nonatomic) UILabel *levlellabel;
|
|
@property (strong, nonatomic) UILabel *goldLabel;
|
|
@property (strong, nonatomic) UILabel *taskNumber;
|
|
@property (strong, nonatomic) UILabel *dengJi;
|
|
@property (strong, nonatomic) UILabel *jinBi;
|
|
@property (strong, nonatomic) UILabel *renWu;
|
|
|
|
@property (nonatomic,assign) id<MineHeaderItemsDelegate> itemsDelegate;
|
|
-(void)loadCellData;
|
|
@property (nonatomic,strong) UIView *redpontView;
|
|
|
|
@end
|