// // MyPlanVCHeader.h // jiaPeiC // // Created by apple on 16/8/17. // Copyright © 2016年 JCZ. All rights reserved. // #import @interface MyPlanVCHeader : UITableViewHeaderFooterView { //*lblName *imgNumTwo, *lineLabel, UILabel *lblNum,*lblDate,*titNum,*titDate,*titCountLabel,*countLabel,*moneyLabel; UIImageView *imgNum,*imgDate; MyBlockType clkBlock; } ///type区头样式 0已同意 1待审核 2已拒绝 @property(nonatomic,assign) NSInteger type; @property(nonatomic, copy) NSString *aTag; @property(nonatomic, strong) NSDictionary *model; @property(nonatomic, strong) UIButton *btnScan; @property(nonatomic, strong) UIButton *btnEdit; @property(nonatomic, strong) UIButton *btnAll; @property(nonatomic, retain) UILabel *waitLabel; @property(nonatomic, retain) UILabel *stateLabel; -(void)click:(MyBlockType)block; //-(void)setHeaderStateLabel; @end