Skip to content

Commit 1b826a4

Browse files
update to internal commit f86faf95
1 parent 5d6d860 commit 1b826a4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

programming/objectivec-swift/api-reference/barcode-scanner/barcode-scanner-view-controller.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,19 @@ class BarcodeScannerViewController: UIViewController
3434
| Property | Type | Description |
3535
| -------- | ---- | ----------- |
3636
| [`config`](#config) | *DSBarcodeScannerConfig \** | Sets or returns the barcode scanner configurations. |
37-
| [`onScannedResult`](#onscannedresult) | *void (^)(DSMRZScanResult *)* | A property that holds a Block. The block is a callback that takes a single parameter of type `DSMRZScanResult` and returns no value. |
37+
| [`onScannedResult`](#onscannedresult) | *void (^)(DSBarcodeScannerConfig *)* | A property that holds a Block. The block is a callback that takes a single parameter of type `DSBarcodeScanResult` and returns no value. |
3838

3939
### config
4040

41-
Sets or returns the barcode scanner configurations of type [`DSMRZScannerConfig`](barcode-scanner-config.md).
41+
Sets or returns the barcode scanner configurations of type [`DSBarcodeScannerConfig`](barcode-scanner-config.md).
4242

4343
<div class="sample-code-prefix"></div>
4444
>- Objective-C
4545
>- Swift
4646
>
4747
>1.
4848
```objc
49-
@property (nonatomic, strong, readwrite) DSMRZScannerConfig * config
49+
@property (nonatomic, strong, readwrite) DSBarcodeScannerConfig * config
5050
```
5151
1.
5252
```swift
@@ -55,15 +55,15 @@ var config: BarcodeScannerConfig = .init()
5555

5656
### onScannedResult
5757

58-
A property that holds a Block. The block is a callback that takes a single parameter of type [`DSMRZScanResult`](barcode-scan-result.md) and returns no value.
58+
A property that holds a Block. The block is a callback that takes a single parameter of type [`DSBarcodeScanResult`](barcode-scan-result.md) and returns no value.
5959

6060
<div class="sample-code-prefix"></div>
6161
>- Objective-C
6262
>- Swift
6363
>
6464
>1.
6565
```objc
66-
@property (nonatomic, copy, readwrite) void (^)(DSMRZScanResult *) onScannedResult
66+
@property (nonatomic, copy, readwrite) void (^)(DSBarcodeScanResult *) onScannedResult
6767
```
6868
1.
6969
```swift

0 commit comments

Comments
 (0)