// // FUImageRenderViewController.h // FULiveDemo // // Created by 项林平 on 2022/8/8. // #import #import #import #import "FULandmarkManager.h" #import "FUBeautyComponent.h" #import "FUImageRenderViewModel.h" #import "FURenderKitManager.h" #import #import "FULiveDefine.h" #import "FUTipHUD.h" NS_ASSUME_NONNULL_BEGIN @interface FUImageRenderViewController : UIViewController @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