KSBeautySettingView.m 566 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // KSBeautySettingView.m
  3. // KulexiuForTeacher
  4. //
  5. // Created by Kyle on 2022/3/30.
  6. //
  7. #import "KSBeautySettingView.h"
  8. @interface KSBeautySettingView ()
  9. @property (weak, nonatomic) IBOutlet UISlider *slider;
  10. @property (weak, nonatomic) IBOutlet UIView *beautyView;
  11. @end
  12. @implementation KSBeautySettingView
  13. - (IBAction)sliderAction:(UISlider *)sender {
  14. }
  15. /*
  16. // Only override drawRect: if you perform custom drawing.
  17. // An empty implementation adversely affects performance during animation.
  18. - (void)drawRect:(CGRect)rect {
  19. // Drawing code
  20. }
  21. */
  22. @end