├──HuiYanEKYCVerification.framework├──tnn.framework├──tnnliveness.framework├──YTCommonLiveness.framework├──YTFaceAlignmentTinyLiveness.framework├──YTFaceDetectorLiveness.framework├──YTFaceLiveReflect.framework├──YTFaceTrackerLiveness.framework├──YTPoseDetector.framework├──YtSDKKitActionLiveness.framework├──YtSDKKitFramework.framework├──YtSDKKitOcrVideoIdent.framework├──YtSDKKitReflectLiveness.framework└──YtSDKKitSilentLiveness.framework├── HKOCRSDK.framework├── tiny_opencv2.framework└── YtSDKKitOcrVideoIdent.framework
└── Accelerate.framework└── CoreML.framework
└── face-tracker-v001.bundle└── huiyan_verification.bundle└── ytsdkviidres.bundle

<key>Privacy - Camera Usage Description</key><string>eKYC SDK 需要访问您的相机权限</string>
#import <HuiYanEKYCVerification/VerificationKit.h>- (void)viewDidLoad {[[VerificationKit sharedInstance] initWithViewController:self];}
- (IBAction)startVerificationEvent:(id)sender {NSLog(@"startVerificationEvent");VerificationConfig *config = [[VerificationConfig alloc] init];config.licPath = [[NSBundle mainBundle] pathForResource:@"eKYC_license.lic" ofType:nil];config.languageType = (LanguageType)(selectTag + 1);config.verAutoTimeOut = 30000;//鉴伪超时时间设置config.hyFaceTimeOut = 15000;//人脸单动作超时设置config.ekycToken = self.eKYCTokenTextField.text;[[VerificationKit sharedInstance] startVerifiWithConfig:config withSuccCallback:^(int errorCode, id _Nonnull resultInfo, id _Nullable reserved) {NSLog(@"ErrCode:%d msg:%@",errorCode,resultInfo);NSString *showMsg = [NSString stringWithFormat:@"ErrCode:%d msg:%@",errorCode,resultInfo];[self showAlertViewWithMsg:showMsg];} withFialCallback:^(int errorCode, NSString * _Nonnull errorMsg, id _Nullable reserved) {NSLog(@"ErrCode:%d msg:%@ extra:%@",errorCode,errorMsg,reserved);NSString *showMsg = [NSString stringWithFormat:@"ErrCode:%d msg:%@ extra:%@",errorCode,errorMsg,reserved];[self showAlertViewWithMsg:showMsg];}];}

- (void)dealloc {[VerificationKit clearInstance];}


文档反馈