RQExerciseSettingHeaderView.h 387 B

12345678910111213141516171819
  1. //
  2. // RQExerciseSettingHeaderView.h
  3. // JSJP
  4. //
  5. // Created by RONGQING on 2022/1/14.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RQExerciseSettingHeaderView : UIView
  10. @property (weak, nonatomic) IBOutlet UIButton *cancleBtn;
  11. @property (weak, nonatomic) IBOutlet UIButton *completeBtn;
  12. /// init
  13. + (instancetype)exerciseSettingHeaderView;
  14. @end
  15. NS_ASSUME_NONNULL_END