RQCommonHeaderView.h 375 B

12345678910111213141516
  1. //
  2. // RQCommonHeaderView.h
  3. // RQCommon
  4. //
  5. // Created by 张嵘 on 2018/11/27.
  6. // Copyright © 2018 张嵘. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "RQReactiveViewProtocol.h"
  10. @interface RQCommonHeaderView : UITableViewHeaderFooterView <RQReactiveViewProtocol>
  11. /// generate a header
  12. + (instancetype)headerViewWithTableView:(UITableView *)tableView;
  13. @end