NetverifyViewController
@interface NetverifyViewController : JMNavigationController
Handles setup and presentation of the Netverify Mobile SDK.
-
Create an instance of the Netverify SDK.
Declaration
Objective-C
- (instancetype _Nonnull)initWithConfiguration: (NetverifyConfiguration *_Nonnull)configuration;
Swift
init(configuration: NetverifyConfiguration)
Parameters
configuration
The configuration that is used for the current instance
Return Value
An initialized NetverifyViewController instance @throws an NSException if NetverifyConfiguration is not configured correctly. Please note that in Swift you need to catch the underlaying exception and translate it into NSError. Please check out our sample project if you need more information.
-
Declaration
Objective-C
+ (NSString *_Nonnull)sdkVersion;
Swift
class func sdkVersion() -> String
Return Value
the Netverify Mobile SDK version.
-
Declaration
Objective-C
- (NSUUID *_Nullable)debugID;
Swift
func debugID() -> UUID?
Return Value
a sessionID if sendDebugInfoToJumio is set to YES.
-
Call this method to destroy the NetverifyViewController instance, before you set it to nil.
Declaration
Objective-C
- (void)destroy;
Swift
func destroy()