Dev Center
Swift
Objective-C
Table of contents

License Methods

Method Description
license Stores the license used in DynamsoftBarcodeReader.
initWithLicense Initializes DynamsoftBarcodeReader with a license.
outputLicenseToString Outputs the license content as an encrypted string from the license server to be used for offline license verification.
initLicenseFromDLS Initializes the barcode reader license and connects to the specified server for online verification.
initWithLicenseFromServer Initialize license and connect to the specified server for online verification.

license

A property that stores the license.

@property (nonatomic, nonnull) NSString* license;

initLicense

Initializes DynamsoftBarcodeReader with a license.

- (instancetype _Nonnull)initWithLicense:(NSString* _Nonnull)license;

Parameters

[in] license The license key.

Return Value

The instance of DynamsoftBarcodeReader.

Code Snippet

  • Objective-C
  • Swift
  1. [DynamsoftBarcodeReader initLicense:@"Put your license here" verificationDelegate: self];
    - (void)DBRLicenseVerificationCallback:(bool)isSuccess error:(NSError *)error{
    }
    
  2. DynamsoftBarcodeReader.initLicense("Put your license here", verificationDelegate: self)
    func dbrLicenseVerificationCallback(_ isSuccess: Bool, error: Error?) {
    }
    

outputLicenseToString

Output the license content as an encrypted string from the license server to be used for offline license verification.

- (NSString *_Nullable)outputLicenseToString:(NSError* _Nullable * _Nullable)error;

Parameters

[in,out] error Input a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information.

Return Value

The output string which stores the contents of license.

Code Snippet

  • Objective-C
  • Swift
  1. DynamsoftBarcodeReader *barcodeReader;
    barcodeReader = [[DynamsoftBarcodeReader alloc] initWithLicenseFromServer:@"" licenseKey:@"C087****" verificationDelegate:self];
    NSError __autoreleasing * _Nullable error;
    [barcodeReader outputLicenseToString:&error];
    
  2. let error: NSError? = NSError()
    let barcodeReader = DynamsoftBarcodeReader.init(licenseFromServer: "", licenseKey: "C087****", verificationDelegate: self)
    let licenseString = try? barcodeReader.outputLicenseToString()
    

initWithLicenseFromServer

Initializes the license and connects to the specified server for online verification.

- (instancetype _Nonnull)initWithLicenseFromServer:(NSString* _Nullable)licenseSeServer licenseKey:(NSString* _Nonnull)licenseKey verificationDelegate:(id _Nullable)connectionDelegate;

Parameters

[in] licenseSeServer The name/IP of the license server.
[in] licenseKey The license key.
[in,out] connectionDelegate The delegate to handle callback when license server returns.

Return Value

The instance of DynamsoftBarcodeReader.

Code Snippet

  • Objective-C
  • Swift
  1. DynamsoftBarcodeReader *barcodeReader;
    barcodeReader = [[DynamsoftBarcodeReader alloc] initWithLicenseFromServer:@"" licenseKey:@"C087****" verificationDelegate:self];
    - (void)licenseVerificationCallback:(bool)isSuccess error:(NSError * _Nullable)error
    {
       NSNumber* boolNumber = [NSNumber numberWithBool:isSuccess];
       dispatch_async(dispatch_get_main_queue(), ^{
       [self->verificationReceiver performSelector:self->verificationCallback withObject:boolNumber withObject:error];
       });
    }
    
  2. let barcodeReader = DynamsoftBarcodeReader(licenseFromServer: "", licenseKey: "C087****", verificationDelegate: self)
    func licenseVerificationCallback(_ isSuccess: Bool, error: Error?)
    {
       let boolNumber = NSNumber(value: isSuccess)
       DispatchQueue.main.async{
      self.verificationReceiver?.perform(self.verificationCallback!, with: boolNumber, with: error)
       }
    }
    

initLicenseFromDLS

Initializes the barcode reader license and connects to the specified server for online verification.

- (instancetype _Nonnull)initLicenseFromDLS:(iDMDLSConnectionParameters* _Nullable)dlsConnectionParameters verificationDelegate:(id _Nullable)connectionDelegate;

Parameters

[in] dlsConnectionParameters The struct DMDLSConnectionParameters with customized settings.
[in,out] connectionDelegate The delegate to handle callback when license server returns.

Return Value

The instance of DynamsoftBarcodeReader.

Code Snippet

  • Objective-C
  • Swift
  1. DynamsoftBarcodeReader *barcodeReader;
    iDMDLSConnectionParameters* dls = [[iDMDLSConnectionParameters alloc] init];
    dls.organizationID = @"200001";
    dls.sessionPassword = @"******";
    barcodeReader = [[DynamsoftBarcodeReader alloc] initLicenseFromDLS:dls verificationDelegate:self];
    - (void)DLSLicenseVerificationCallback:(bool)isSuccess error:(NSError * _Nullable)error
    {
       //TODO add your code for license verification
    }
    
  2. let dls = iDMDLSConnectionParameters()
    dls.organizationID = "200001"
    dls.sessionPassword = "******"
    let barcodeReader = DynamsoftBarcodeReader.init(licenseFromDLS: dls, verificationDelegate: self)
    func DLSLicenseVerificationCallback(_ isSuccess: Bool, error: Error?)
    {
       print("isSucc : \(isSuccess) error : \(String(describing: error))")
    }
    

This page is compatible for:

Version 7.5.0

Is this page helpful?

YesYes NoNo

In this article:

version 8.9.3

  • Latest version (10.2.10)
  • Version 10.x
    • Version 10.0.21
    • Version 10.0.20
  • Version 9.x
    • Version 9.6.20
    • Version 9.6.11
    • Version 9.6.10
    • Version 9.6.0
    • Version 9.4.0
    • Version 9.2.13
    • Version 9.2.11
    • Version 9.2.10
    • Version 9.0.2
    • Version 9.0.1
    • Version 9.0.0
  • Version 8.x
    • Version 8.9.3
    • Version 8.9.1
    • Version 8.9.0
    • Version 8.8.0
    • Version 8.6.0
    • Version 8.4.0
    • Version 8.2.1
    • Version 8.2.0
    • Version 8.1.2
    • Version 8.1.0
    • Version 8.0.0
  • Version 7.x
    • Version 7.6.0
    • Version 7.5.0
Change +