TimeBarCell.h 685 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // TimeBarCell.h
  3. // jiaPeiC
  4. //
  5. // Created by apple on 16/6/16.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. //dansonmark delete
  9. #import <UIKit/UIKit.h>
  10. @interface TimeBarCell : UITableViewCell
  11. {
  12. UIButton *beginBtn;
  13. UIButton *endBtn;
  14. MyBlockType removeBlock;
  15. }
  16. @property (nonatomic, assign) NSInteger isUpdate;
  17. @property (nonatomic, copy) NSString *timeID;
  18. @property (nonatomic, copy) NSString *timeTag;
  19. @property (nonatomic, copy) NSString *beginTime;
  20. @property (nonatomic, copy) NSString *endTime;
  21. -(void)showWithRemove:(MyBlockType)remove;
  22. -(void)setBeginAndEndTimeWithBeginTime:(NSString *)beginString EndTime:(NSString *)endString;
  23. @end