123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #import <UIKit/UIkit.h>
- #import <AVFoundation/AVFoundation.h>
- #import <ToygerService/ToygerFaceFrame.h>
- @protocol DTFFaceViewProtocol;
- @protocol DTFFaceViewDelegate <NSObject>
- - (void)viewExit:(id<DTFFaceViewProtocol>)view;
- - (void)playBtn:(UIButton *)btn;
- @end
- @protocol DTFFaceViewProtocol <NSObject>
- @property(nonatomic, weak) id<DTFFaceViewDelegate> delegate;
- - (void)setPreviewLayer:(AVCaptureVideoPreviewLayer *)previewLayer;
- - (void)setScreenRotation:(BOOL)isRotation;
- - (void)setPlayBtnIcon;
- - (void)handleFaceStateChange:(ToygerMessage)state
- stateTips:(NSString *)tips
- actionGuide:(NSString *)guide
- progress:(CGFloat)progress;
- - (UIView *)view;
- @optional
- - (void)setPhotinusColor:(UIColor *)color;
- - (void)setSuitableType:(BOOL)isSuitable;
- - (void)showBlurImage:(UIImage *)image;
- @end
|