1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // FUImageRenderViewController.h
- // FULiveDemo
- //
- // Created by 项林平 on 2022/8/8.
- //
- #import <UIKit/UIKit.h>
- #import <FURenderKit/FURenderKit.h>
- #import <FURenderKit/FUVideoComponentDefines.h>
- #import "FULandmarkManager.h"
- #import "FUBeautyComponent.h"
- #import "FUImageRenderViewModel.h"
- #import "FURenderKitManager.h"
- #import <Masonry/Masonry.h>
- #import "FULiveDefine.h"
- #import "FUTipHUD.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface FUImageRenderViewController : UIViewController<FUImageRenderViewModelDelegate>
- @property (nonatomic, strong, readonly) FUGLDisplayView *renderView;
- /// 人脸/人体/手势检测提示标签
- @property (nonatomic, strong, readonly) UILabel *noTrackLabel;
- /// 额外操作提示标签
- @property (nonatomic, strong, readonly) UILabel *tipLabel;
- @property (nonatomic, strong, readonly) FUImageRenderViewModel *viewModel;
- - (instancetype)initWithViewModel:(FUImageRenderViewModel *)viewModel;
- /// 更新保存按钮距离屏幕底部的距离
- - (void)updateBottomConstraintsOfDownloadButton:(CGFloat)constant;
- @end
- NS_ASSUME_NONNULL_END
|