harshalrj25 / BarcodeEasyScan

Easily implement barcode/QR scan with few lines. No boilerplate code, no xib, no storboards.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BarcodeEasyScan 📢

CI Status Version License Platform

Easily implement barcode scan with few lines. No boilerplate code, no xib, no storboards.

Example 📚

To run the example project, clone the repo, and run pod install from the Example directory first.

Installation ⏳

BarcodeEasyScan is available through CocoaPods and Carthage:

To Install for CocoaPods

pod 'BarcodeEasyScan'

Or Install for Carthage

github "harshalrj25/BarcodeEasyScan" "master"

alt text

Usage 💡

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 😇

My email id, harshalrj25@gmail.com

Harshal Jadhav

License

It's all your's 🎁

About

Easily implement barcode/QR scan with few lines. No boilerplate code, no xib, no storboards.

License:MIT License


Languages

Language:Swift 87.9%Language:Ruby 12.1%