1234567891011121314151617181920212223242526272829303132 |
- //
- // KSBeautySettingView.m
- // KulexiuForTeacher
- //
- // Created by Kyle on 2022/3/30.
- //
- #import "KSBeautySettingView.h"
- @interface KSBeautySettingView ()
- @property (weak, nonatomic) IBOutlet UISlider *slider;
- @property (weak, nonatomic) IBOutlet UIView *beautyView;
- @end
- @implementation KSBeautySettingView
- - (IBAction)sliderAction:(UISlider *)sender {
- }
- /*
- // Only override drawRect: if you perform custom drawing.
- // An empty implementation adversely affects performance during animation.
- - (void)drawRect:(CGRect)rect {
- // Drawing code
- }
- */
- @end
|