12345678910111213141516171819 |
- //
- // RQExerciseSettingHeaderView.h
- // JSJP
- //
- // Created by RONGQING on 2022/1/14.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface RQExerciseSettingHeaderView : UIView
- @property (weak, nonatomic) IBOutlet UIButton *cancleBtn;
- @property (weak, nonatomic) IBOutlet UIButton *completeBtn;
- /// init
- + (instancetype)exerciseSettingHeaderView;
- @end
- NS_ASSUME_NONNULL_END
|