BGTLiveBeautyView.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // BGTLiveBeautyView.h
  3. // BuguLive
  4. //
  5. // Created by xfg on 2017/2/17.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "BGNameSlider.h"
  10. @class BGTLiveBeautyView;
  11. @protocol FWTLiveBeautyViewDelegate <NSObject>
  12. @required
  13. // 设置美颜类型
  14. - (void)setBeauty:(BGTLiveBeautyView *)beautyView withBeautyName:(NSString *)beautyName;
  15. // 设置美颜的值
  16. - (void)setBeautyValue:(BGTLiveBeautyView *)beautyView;
  17. @end
  18. @interface BGTLiveBeautyView : UIView
  19. @property (nonatomic, weak) id<FWTLiveBeautyViewDelegate> delegate;
  20. @property (nonatomic, strong) UIView *beautyBgView; // 美颜背景视图
  21. @property (nonatomic, strong) UIView *beautyBtnContrianerView; // 美颜按钮背景视图
  22. // 参数调节
  23. @property (nonatomic, readonly) BGNameSlider *filterParam1; // 参数1
  24. @property (nonatomic, readonly) BGNameSlider *filterParam2; // 参数2
  25. @property (nonatomic, readonly) BGNameSlider *filterParam3; // 参数2
  26. @end