RQErrorAndCollectHeaderView.h 672 B

1234567891011121314151617181920212223
  1. //
  2. // RQErrorAndCollectHeaderView.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/8/3.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQErrorAndCollectHeaderView : UIView
  11. @property (weak, nonatomic) IBOutlet UILabel *allNumLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
  13. @property (weak, nonatomic) IBOutlet QMUIButton *todayErrorBtn;
  14. @property (weak, nonatomic) IBOutlet QMUIButton *allErrorBtn;
  15. @property (weak, nonatomic) IBOutlet QMUIButton *toLookBtn;
  16. @property (weak, nonatomic) IBOutlet UIStackView *bottomView;
  17. + (instancetype)errorAndCollectHeaderView;
  18. @end
  19. NS_ASSUME_NONNULL_END