QRCodeReader.swift is a simple code reader (initially only QRCode) for iOS in Swift. It is based on the AVFoundation
framework from Apple in order to replace ZXing or ZBar for iOS 8.0 and over. It can decodes these format types.
It provides a default view controller to display the camera view with the scan area overlay and it also provides a button to switch between the front and the back cameras.
Requirements
- iOS 8.0+
- Xcode 10.0+
- Swift 5.0+
Usage
In iOS10+, you will need first to reasoning about the camera use. For that you'll need to add the Privacy - Camera Usage Description (NSCameraUsageDescription) field in your Info.plist:
Then just follow these steps:
- Add delegate
QRCodeReaderViewControllerDelegate
- Add
import AVFoundation
- Add
import QRCodeReader
- The
QRCodeReaderViewControllerDelegate
implementations is:
Note that you should check whether the device supports the reader library by using the QRCodeReader.isAvailable()
or the QRCodeReader.supportsMetadataObjectTypes()
methods.
Interface customization
You can create your own interface to scan your 1D/2D codes by using the QRCodeReaderDisplayable
protocol and the readerView
property in the QRCodeReaderViewControllerBuilder
:
Installation
The recommended approach to use QRCodeReaderViewController in your project is using the CocoaPods package manager, as it provides flexible dependency management and dead simple installation.
CocoaPods
Install CocoaPods if not already available:
Go to the directory of your Xcode project, and Create and Edit your Podfile and add QRCodeReader.swift to your corresponding TargetName
:
Install into your project:
Open your project in Xcode from the .xcworkspace file (not the usual project file):
You can now import QRCodeReader
framework into your files.
Carthage
Carthage is a decentralized dependency manager that automates the process of adding frameworks to your Cocoa application.
You can install Carthage with Homebrew using the following command:
To integrate QRCodeReader
into your Xcode project using Carthage, specify it in your Cartfile
file:
Swift Package Manager
You can use The Swift Package Manager to install QRCodeReader.swift
by adding the proper description to your Package.swift
file:
Note that the Swift Package Manager is still in early design and development, for more information checkout its GitHub Page.
Manually
Download the project and copy the QRCodeReader
folder into your project to use it in.
Contact
Yannick Loriot
License (MIT)
Copyright (c) 2014-present - Yannick Loriot
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.