24 lines
737 B
Objective-C
24 lines
737 B
Objective-C
//
|
|
// IfishTaskViewCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/3/9.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "IfishTaskModel.h"
|
|
#import "IfishTaskRuletype.h"
|
|
@interface IfishTaskViewCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UIImageView *taskImg;
|
|
@property (weak, nonatomic) IBOutlet UILabel *taskTitle;
|
|
@property (weak, nonatomic) IBOutlet UILabel *taskaddGold;
|
|
@property (weak, nonatomic) IBOutlet UILabel *isDoneTask;
|
|
@property (weak, nonatomic) IBOutlet UILabel *taskdetail;
|
|
-(void)loadEveryDayDataWith:(IfishTaskRuletype*)model doneTaskArr:(NSArray *)doneTaskArr;
|
|
|
|
-(void)loadChioceDataWith:(IfishTaskRuletype*)model doneTaskArr:(NSArray *)doneTaskArr
|
|
;
|
|
|
|
@end
|