// // InspectHeaderView.h // redstar // // Created by admin on 15/11/12. // Copyright © 2015年 ZWF. All rights reserved. // #import <UIKit/UIKit.h> @class TaskGroup; @protocol InspectHeaderDelegate <NSObject> @optional - (void)clickHeadView; @end @interface InspectHeaderView : UITableViewHeaderFooterView @property (nonatomic, strong) TaskGroup *taskGroup; @property (nonatomic, weak) id<InspectHeaderDelegate> delegate; + (instancetype)headViewWithTableView:(UITableView *)tableView; @end