TiUISliderRelatedView.h 512 B

1234567891011121314151617181920212223242526
  1. //
  2. // TiUISliderRelatedView.h
  3. // TiSDKDemo
  4. //
  5. // Created by iMacA1002 on 2019/12/2.
  6. // Copyright © 2020 Tillusory Tech. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "TiUISliderNew.h"
  10. @interface TiUISliderRelatedView : UIView
  11. // 自定义Slider
  12. @property(nonatomic,strong) TiUISliderNew *sliderView;
  13. //显示Slider数值
  14. @property(nonatomic,strong) UILabel *sliderLabel;
  15. //美颜对比按钮
  16. @property(nonatomic,strong) UIButton *tiContrastBtn;
  17. -(void)setSliderHidden:(BOOL)hidden;
  18. @end