1234567891011121314151617181920212223242526272829303132 |
- //
- // TimeBarCell.h
- // jiaPeiC
- //
- // Created by apple on 16/6/16.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- //dansonmark delete
- #import <UIKit/UIKit.h>
- @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
|