iOS: Most common pitfalls.

1. How to use thumbnails and a whole scanned image?

To use thumbnails and the full scanned image, you need to enable them in your configuration. You can do this by adding the following settings:

                    private func setBarkoderSettings() {
        guard let config = barkoderView.config else { return }
            
        config.imageResultEnabled = true
        config.locationInImageResultEnabled = true
            
        // Your additional parameters
    }
            

2.

History:

close