17 lines
366 B
Objective-C
17 lines
366 B
Objective-C
//
|
|
// TaskKindViewCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/3/9.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface TaskKindViewCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UILabel *taskTitle;
|
|
@property (weak, nonatomic) IBOutlet UILabel *doneTask;
|
|
-(void)setCellDataAt:(NSIndexPath*)indexPath;
|
|
|
|
@end
|