// // MineHeaderNewItemsCell.h // Ifish // // Created by imac on 17/3/13. // Copyright © 2017年 lianlian. All rights reserved. // #import @protocol MineHeaderItemsDelegate -(void)tapDengjiAction; -(void)tapGoldAction; -(void)tapRenWuAction; @end @interface MineHeaderNewItemsCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *levlellabel; @property (weak, nonatomic) IBOutlet UILabel *goldLabel; @property (weak, nonatomic) IBOutlet UILabel *taskNumber; @property (weak, nonatomic) IBOutlet UILabel *dengJi; @property (weak, nonatomic) IBOutlet UILabel *jinBi; @property (weak, nonatomic) IBOutlet UILabel *renWu; @property (nonatomic,assign) id itemsDelegate; -(void)loadCellData; @property (nonatomic,strong) UIView *redpontView; @end