FilterFunctionView.h
607 Bytes
//
// FilterFunctionView.h
// CNLivePlayerSDKDemo
//
// Created by iOS on 16/12/21.
// Copyright © 2016年 雷浩杰. All rights reserved.
//
#import <UIKit/UIKit.h>
typedef void(^FilterViewBlock)(float grindRatio , float whitenRatio, float intensity);
typedef void(^FilterCurrentType)(NSInteger currentType);
typedef void(^FilterCurrentIdx)(NSInteger currentIdx);
@interface FilterFunctionView : UIView
@property (nonatomic, copy) FilterViewBlock filterViewBlock;
@property (nonatomic, copy) FilterCurrentType currentTypeBlock;
@property (nonatomic, copy) FilterCurrentIdx currentIdxBlock;
@end