// // WodeUserAssetCell.h // Ifish // // Created by imac on 17/3/20. // Copyright © 2017年 lianlian. All rights reserved. // #import @protocol MineHeaderItemsDelegate -(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 itemsDelegate; -(void)loadCellData; @property (nonatomic,strong) UIView *redpontView; @end