VerIDFactory
@objc
public class VerIDFactory : NSObject
Ver-ID environment factory
-
Delegate that will be called when the environment is created
Declaration
Swift
@objc public weak var delegate: VerIDFactoryDelegate? -
Face detection factory
Declaration
Swift
@objc public var faceDetectionFactory: FaceDetectionFactory -
Face recognition factory
Declaration
Swift
@objc public var faceRecognitionFactory: FaceRecognitionFactory -
User management factory
Declaration
Swift
@objc public var userManagementFactory: UserManagementFactory -
Constructor
Declaration
Swift
@objc public init(userManagementFactory: UserManagementFactory) -
Constructor
Declaration
Swift
@objc public override init() -
Start creating Ver-ID instance
The creation completion will be reported to the factory delegate.
Declaration
Swift
@objc public func createVerID() -
Create Ver-ID instance
The creation completion will be reported to the factory delegate.
Declaration
Swift
public func createVerID(completion: ((VerID) -> Void)?)Parameters
completionOptional callback when the creation succeeds. Use delegate to receive error callbacks.
VerIDFactory Class Reference