You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
628 B
25 lines
628 B
//
|
|
// APFPresentTask.h
|
|
// APFaceDetectBiz
|
|
//
|
|
// Created by 晗羽 on 8/26/16.
|
|
// Copyright © 2016 DTF. All rights reserved.
|
|
//
|
|
|
|
#import <APBToygerFacade/APBToygerBaseTask.h>
|
|
#import <DTFUtility/CameraService.h>
|
|
#import <BioAuthEngine/DTFFaceViewProtocol.h>
|
|
/**
|
|
* @author Skye Ying, 16-08-26 13:08:04
|
|
*
|
|
* 新建VC,启动整个view
|
|
*/
|
|
@interface APBToygerPresentTask : APBToygerBaseTask
|
|
|
|
@property(nonatomic, strong) id<DTFFaceViewProtocol> faceView;
|
|
|
|
-(void) postCameraPresentwithCamera:(DTFCameraService *) cameraService;
|
|
|
|
-(void) presentAnimated: (BOOL)flag completion:(void (^ __nullable)(void))completion;
|
|
|
|
@end
|