| 123456789101112131415161718192021222324 |
- //
- // BGBeautyView.h
- // BuguLive
- //
- // Created by xfg on 2017/2/17.
- // Copyright © 2017年 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "BGNameSlider.h"
- @interface BGBeautyView : UIView
- @property (nonatomic, strong) UIView *beautyBgView; // 美颜背景视图
- @property (nonatomic, readonly) GPUImageOutput<GPUImageInput> *curFilter; // 选择滤镜
- @property (nonatomic, readonly) UISegmentedControl *filterGroupType; // 滤镜组合
- @property (nonatomic, readonly) UIPickerView *effectPicker; // 特效滤镜
- // 参数调节
- @property (nonatomic, readonly) BGNameSlider *filterParam1; // 参数1
- @property (nonatomic, readonly) BGNameSlider *filterParam2; // 参数2
- @property (nonatomic, readonly) BGNameSlider *filterParam3; // 参数3
- @end
|