// // TimeBarCell.h // jiaPeiC // // Created by apple on 16/6/16. // Copyright © 2016年 JCZ. All rights reserved. // //dansonmark delete #import @interface TimeBarCell : UITableViewCell { UIButton *beginBtn; UIButton *endBtn; MyBlockType removeBlock; } @property (nonatomic, assign) NSInteger isUpdate; @property (nonatomic, copy) NSString *timeID; @property (nonatomic, copy) NSString *timeTag; @property (nonatomic, copy) NSString *beginTime; @property (nonatomic, copy) NSString *endTime; -(void)showWithRemove:(MyBlockType)remove; -(void)setBeginAndEndTimeWithBeginTime:(NSString *)beginString EndTime:(NSString *)endString; @end