28 lines
816 B
Objective-C
28 lines
816 B
Objective-C
//
|
|
// MineHeaderNewItemsCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/3/13.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
@protocol MineHeaderItemsDelegate <NSObject>
|
|
-(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<MineHeaderItemsDelegate> itemsDelegate;
|
|
-(void)loadCellData;
|
|
@property (nonatomic,strong) UIView *redpontView;
|
|
@end
|