BarcodeEasyScan
BarcodeEasyScan copied to clipboard
Easily implement barcode/QR scan with few lines. No boilerplate code, no xib, no storboards.
BarcodeEasyScan :loudspeaker:
Easily implement barcode scan with few lines. No boilerplate code, no xib, no storboards.
Example :books:
To run the example project, clone the repo, and run pod install from the Example directory first.
Installation :hourglass_flowing_sand:
BarcodeEasyScan is available through CocoaPods and Carthage:
To Install for CocoaPods
pod 'BarcodeEasyScan'
Or Install for Carthage
github "harshalrj25/BarcodeEasyScan" "master"

Usage :bulb:
Import the pod inside your viewcontroller class.
import BarcodeEasyScan
You need to add the "Privacy - Camera usage description" key to your app’s Info.plist
Present 'BarcodeScannerViewController' and assign its delegate to self.
// Call this controller to open barcode screen
let barcodeViewController = BarcodeScannerViewController()
barcodeViewController.delegate = self
self.present(barcodeViewController, animated: true, completion: {
})
Use the 'ScanBarcodeDelegate' to implement userDidScanWith(barcode: String) method.
func userDidScanWith(barcode: String) {
// This method results the scanned barcode string
}
Author :innocent:
My email id, [email protected]
|
Harshal Jadhav |
License
It's all your's :gift: