Skip to content

Commit 5ae7f69

Browse files
update to internal commit bd411df6
1 parent 4e2731f commit 5ae7f69

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

programming/objectivec-swift/api-reference/barcode-scanner/barcode-scanner-config.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,17 @@ class BarcodeScannerConfig : NSObject
3434
| Property | Type | Description |
3535
| -------- | ---- | ----------- |
3636
| [`license`](#license) | *NSString \** | Sets or returns the license key for the Barcode Reader. |
37-
| [`templateFile`](#templatefile) | *String \** | Sets or returns the local JSON file path that will configure the parameters template for the Barcode Reader. |
37+
| [`templateFile`](#templatefile) | *NSString \** | Sets or returns the local JSON file path that will configure the parameters template for the Barcode Reader. |
3838
| [`barcodeFormats`](#barcodeformats) | *DSBarcodeFormat* | Sets or returns the barcode format(s) to read. |
3939
| [`scanRegion`](#scanregion) | *DSRect \** | Sets or returns the scan region where only the barcodes located in the scan region can be decoded. |
4040
| [`isTorchButtonVisible`](#istorchbuttonvisible) | *BOOL* | Sets or returns whether or not the torch button is visible. |
4141
| [`isBeepEnabled`](#isbeepenabled) | *BOOL* | Sets or returns whether the beep sound is enabled when a barcode is found. |
4242
| [`isScanLaserVisible`](#isscanlaservisible) | *BOOL* | Sets or returns whether or not the scan laser is visible. |
4343
| [`isAutoZoomEnabled`](#isautozoomenabled) | *BOOL* | Sets or returns whether or not the auto-zoom feature of the Camera Enhancer is enabled. |
4444
| [`isCloseButtonVisible`](#isclosebuttonvisible) | *BOOL* | Sets or returns whether or not the close button is visible. |
45-
| [`scanningMode`](#scanningmode) | *ScanningMode* | Sets or returns the scanning mode. |
45+
| [`scanningMode`](#scanningmode) | *DSScanningMode* | Sets or returns the scanning mode. |
4646
| [`maxConsecutiveStableFramesToExit`](#maxconsecutivestableframestoexit) | *int* | Sets or returns how long the library will keep scanning when there is no more barcodes to decode. |
47-
| [`expectedBarcodesCount`](#expectedbarcodescount) | *int* | Sets or returns the expected number of barcodes. |
47+
| [`expectedBarcodesCount`](#expectedbarcodescount) | *NSIntger* | Sets or returns the expected number of barcodes. |
4848
| [`isCameraToggleButtonVisible`](#iscameratogglebuttonvisible) | *BOOL* | Sets or returns whether or not the camera toggle button is visible. |
4949

5050
The following property is deprecated:
@@ -82,7 +82,7 @@ Sets or returns the local JSON file path that will configure the parameters temp
8282
```objc
8383
@property(nonatomic, assign) NSString* templateFile;
8484
```
85-
1.
85+
2.
8686
```swift
8787
var templateFile: String { get set }
8888
```

programming/objectivec-swift/api-reference/barcode-scanner/enum-scanning-mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ typedef NS_ENUM(NSInteger, DSScanningMode)
3434
DSScanningModeMultiple
3535
};
3636
```
37-
1.
37+
2.
3838
```swift
3939
@objc public enum ScanningMode: Int {
4040
/**

0 commit comments

Comments
 (0)