MyPlanVCHeader.h 949 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // MyPlanVCHeader.h
  3. // jiaPeiC
  4. //
  5. // Created by apple on 16/8/17.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface MyPlanVCHeader : UITableViewHeaderFooterView
  10. {
  11. //*lblName *imgNumTwo, *lineLabel,
  12. UILabel *lblNum,*lblDate,*titNum,*titDate,*titCountLabel,*countLabel,*moneyLabel;
  13. UIImageView *imgNum,*imgDate;
  14. MyBlockType clkBlock;
  15. }
  16. ///type区头样式 0已同意 1待审核 2已拒绝
  17. @property(nonatomic,assign) NSInteger type;
  18. @property(nonatomic, copy) NSString *aTag;
  19. @property(nonatomic, strong) NSDictionary *model;
  20. @property(nonatomic, strong) UIButton *btnScan;
  21. @property(nonatomic, strong) UIButton *btnEdit;
  22. @property(nonatomic, strong) UIButton *btnAll;
  23. @property(nonatomic, retain) UILabel *waitLabel;
  24. @property(nonatomic, retain) UILabel *stateLabel;
  25. -(void)click:(MyBlockType)block;
  26. //-(void)setHeaderStateLabel;
  27. @end