Dev Center
Swift
Objective-C
Table of contents

Thanks for downloading Dynamsoft Barcode Reader Package!

Your download will start shortly. If your download does not begin, click here to retry.

Objective-C API Reference - License Methods

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

initWithLicense

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 *barcodeReader;
    barcodeReader = [[DynamsoftBarcodeReader alloc] initWithLicense:@"t0260NwAAAHV***************"];
    
  2. let barcodeReader = DynamsoftBarcodeReader.init(license: "t0260NwAAAHV***************")
    

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.init(licenseSeServer: "", licenseKey: "t0260NwAAAHV***************", connectionDelegate: self)
    func licenseVerificationCallback(_ isSuccess: Bool, error: Error?)
    {
       let boolNumber = NSNumber(value: isSuccess)
       DispatchQueue.main.async{
      self.verificationReceiver?.perform(self.verificationCallback!, with: boolNumber, with: 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] initWithLicense:@"t0260NwAAAHV***************"];
    NSError __autoreleasing * _Nullable error;
    [barcodeReader outputLicenseToString:&error];
    
  2. let error: NSError? = NSError()
    let barcodeReader = DynamsoftBarcodeReader.init(license: "t0260NwAAAHV***************")
    let licenseString = try? barcodeReader.outputLicenseToString()
    

This page is compatible for:

Version 7.5.0

Is this page helpful?

YesYes NoNo

In this article:

version 7.6.0

  • Latest version
  • Version 9.x
    • Version 9.6.40
    • 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 +