Table of contents
Swift
Objective-C

Configure the UI Elements

BarcodeScanner provides a set of UI elements that can be easily customized.

barcode-scanner

Barcode Scanner UI Components

  • Close button: Stop barcode scanning and go back to the previous activity.
  • Scan Region: Set a region of interest so that the algorithm focus on this region only. It can sharpenly improve the processing speed. For some special barcode types like DotCode the scan region improves the read-rate as well.
  • Torch button: A clickable button that can turn on/off the torch.
  • Scan Laser: A line that moving up and down. Its moving area is limited in the scan region.
  • Objective-C
  • Swift
  1. DSBarcodeScannerConfig *config = [[DSBarcodeScannerConfig alloc] init];
    config.isCloseButtonVisible = false;
    DSRect *region = [[DSRect alloc] init];
    region.left = 0.15;
    region.top = 0.3;
    region.right = 0.85;
    region.bottom = 0.7;
    config.scanRegion = region;
    config.isTorchButtonVisible = false;
    config.isScanLaserVisible = false;
    config.isCameraToggleButtonVisible = true;
    
  2. let config = BarcodeScannerConfig()
    config.isCloseButtonVisible = false
    let region = Rect()
    region.left = 0.15
    region.top = 0.3
    region.right = 0.85
    region.bottom = 0.7
    config.scanRegion = region
    config.isTorchButtonVisible = false
    config.isScanLaserVisible = false
    config.isCameraToggleButtonVisible = true
    

Related APIs

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: