Usage and Integration Guide
Initializing the SDK
.m:
#import "ViewController.h"
#import <AcessoBio/AcessoBio.h>
@implementation ViewController: UIViewController
- (void)viewDidLoad {
[super viewDidLoad];
unicoCheck = [[AcessoBioManager alloc]initWithViewController:self];
}
- (void)onErrorAcessoBioManager:(ErrorBio *)error {
// your code
}
- (void)onSystemChangedTypeCameraTimeoutFaceInference {
// your code
}
- (void)onSystemClosedCameraTimeoutSession {
// your code
}
- (void)onUserClosedCameraManually {
// your code
}
@endEnvironment configuration
Implementing the Callback Functions
1
2
3
4
Configuring Camera Mode
Implementing Delegates for Camera Events
onSuccess Method
onSuccess MethodonErrorSelfie Method
onErrorSelfie MethodPrepare and Open Camera
Last updated
Was this helpful?