• Stars
    star
    693
  • Rank 62,676 (Top 2 %)
  • Language
    Swift
  • License
    MIT License
  • Created almost 10 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

1D and 2D barcodes reader and generators for iOS 8 with delightful controls. Now Swift.

RSBarcodes, now in Swift.

Build Status codecov.io Carthage compatible


RSBarcodes allows you to read 1D and 2D barcodes using the metadata scanning capabilities introduced with iOS 7 and generate the same set of barcode images for displaying and sharing. Now implemented in Swift.

TODO

Generators

  • Code39
  • Code39Mod43
  • ExtendedCode39
  • Code93
  • Code128
  • UPCE
  • EAN FAMILIY (EAN8 EAN13 ISBN13 ISSN13)
  • ITF14
  • Interleaved2of5
  • DataMatrix
  • PDF417
  • QR
  • Aztec
  • Codabar: requires iOS15.4 or later
  • Views

Reader

  • Views
  • ReaderController

Installation

To add a package dependency to your Xcode project, select File > Swift Packages > Add Package Dependency and enter https://github.com/yeahdongcn/RSBarcodes_Swift to the text field.

Simply add the following lines to your Podfile:

# required by Cocoapods 0.36.0.rc.1 for Swift Pods
use_frameworks!

pod 'RSBarcodes_Swift', '~> 5.2.0'

You will need to import RSBarcodes_Swift manually in the ViewController file after creating the file using wizard.

(CocoaPods v0.36 or later required. See this blog post for details.)

Simply add the following line to your Cartfile:

github "yeahdongcn/RSBarcodes_Swift" >= 5.2.0

You will need to import RSBarcodes_Swift manually in the ViewController file after creating the file using wizard.

Swift Package Manager (required Xcode 11)

  1. Select File > Swift Packages > Add Package Dependency. Enter https://github.com/yeahdongcn/RSBarcodes_Swift in the "Choose Package Repository" dialog.
  2. In the next page, specify the version resolving rule as "Up to Next Major" with the latest version.
  3. After Xcode checking out the source and resolving the version, you can choose the "RSBarcodes_Swift" library and add it to your app target.

Manual

  1. Add RSBarcodes_Swift as a submodule by opening the Terminal, cd-ing into your top-level project directory, and entering the command git submodule add https://github.com/yeahdongcn/RSBarcodes_Swift.git
  2. Open the RSBarcodes_Swift folder, and drag RSBarcodes.xcodeproj into the file navigator of your app project.
  3. In Xcode, navigate to the target configuration window by clicking on the blue project icon, and select the application target under the "Targets" heading in the sidebar.
  4. Ensure that the deployment target of RSBarcodes.framework matches that of the application target.
  5. In the tab bar at the top of that window, open the "Build Phases" panel.
  6. Expand the "Target Dependencies" group, and add RSBarcodes.framework.
  7. Click on the + button at the top left of the panel and select "New Copy Files Phase". Rename this new phase to "Copy Frameworks", set the "Destination" to "Frameworks", and add RSBarcodes.framework.
  8. Need to import RSBarcodes manually in the ViewController file after creating the file using wizard.

Usage

How to Use Generator and How to Use Reader

Generators

First, import the following frameworks:

import RSBarcodes_Swift
import AVFoundation

Then, use the generator to generate a barcode. For example:

RSUnifiedCodeGenerator.shared.generateCode("2166529V", machineReadableCodeObjectType: AVMetadataObjectTypeCode39Code)

It will generate a UIImage instance if the 2166529V is a valid code39 string. For AVMetadataObjectTypeCode128Code, you can change useBuiltInCode128Generator to false to use my implementation (AutoTable for code128).

P.S. There are 4 tables for encoding a string to code128, TableA, TableB, TableC and TableAuto; the TableAuto is always the best choice, but if one has specific requirements, try this:

RSCode128Generator(codeTable: .A).generateCode("123456", machineReadableCodeObjectType: AVMetadataObjectTypeCode128Code)

Example of these simple calls can be found in the test project.

Reader

The following are steps to get the barcode reader working:

  1. File -> New -> File
  2. Under iOS click source and make sure Cocoa Touch Class is selected and hit Next.
  3. Call the name of the class whatever you want but I will refer to it as ScanViewController from now on.
  4. Make it a subclass of RSCodeReaderViewController and ensure the language is Swift and hit Next and then Create
  5. Open your storyboard and drag a UIViewController onto it.
  6. Show the identity inspect and under custom class select ScanViewController
  7. The focus mark layer and corners layer are already there working for you. There are two handlers: one for the single tap on the screen along with the focus mark and one detected objects handler, which all detected will come to you. Now in the ScanViewController.swift file add the following code into the viewDidLoad() or some place more suitable for you:
override func viewDidLoad() {
    super.viewDidLoad()

    self.focusMarkLayer.strokeColor = UIColor.red.cgColor

    self.cornersLayer.strokeColor = UIColor.yellow.cgColor

    self.tapHandler = { point in
        print(point)
    }

    self.barcodesHandler = { barcodes in
        for barcode in barcodes {
            print("Barcode found: type=" + barcode.type + " value=" + barcode.stringValue)
        }
    }
}

If you want to ignore some code types (for example, AVMetadataObjectTypeQRCode), add the following lines:

let types = NSMutableArray(array: self.output.availableMetadataObjectTypes)
types.remove(AVMetadataObjectTypeQRCode)
self.output.metadataObjectTypes = NSArray(array: types)

Validator

To validate codes:

let isValid = RSUnifiedCodeValidator.shared.isValid(code, machineReadableCodeObjectType: AVMetadataObjectTypeEAN13Code)

Image helpers

Use RSAbstractCodeGenerator.resizeImage(source: UIImage, scale: CGFloat) to scale the generated image.

Use RSAbstractCodeGenerator.resizeImage(source: UIImage, targetSize: CGSize, contentMode: UIViewContentMode) to fill/fit the bounds of something to the best capability and don't necessarily know what scale is too much to fill/fit, or if the UIImageView itself is flexible.

Miscellaneous

The Swift Programming Language 中文版

Online version generated using GitBook

License

The MIT License (MIT)

Copyright (c) 2012-2014 P.D.Q.

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.

More Repositories

1

RSBarcodes

1D and 2D barcodes scanner and generators for iOS7 with delightful controls.
Objective-C
382
star
2

RSImageOptimPlugin

Xcode plugin to optimize images using ImageOptim.
Objective-C
216
star
3

RSYahooWeatherLoadingIndicator

This project clones the Yahoo weather app's loading indicator with no image at all, everything is drawing using Quartz and everything can be customised.
Objective-C
123
star
4

RSTransitionEffect

Re-implement mayuur's MJTransitionEffect(https://github.com/mayuur/MJTransitionEffect) and provide default data binding for UITableViewCell and detail view controller and solve the white screen problem. All images, data source are taken from mayuur's MJTransitionEffect.
Objective-C
101
star
5

RSGoogleNowStyleCardsView

This project clones the card inserting animation, card exchange animation and provides UITableView alike APIs for data sourcing and delegating.
Objective-C
100
star
6

RSCircaPageControl

Clones 'Circa' news detail view's page control and provide an easy to ready sample.
Objective-C
79
star
7

RSReadingBoard

ZAKER alike news/article reading board for iOS7.
Objective-C
78
star
8

CocoaControlsPlugin

OS X native application with Xcode plugin for browsing, searching, integrating, cloning controls in http://cocoacontrols.com/.
Objective-C
67
star
9

RSTMALLCell

Yet another clone, the target is Tmall this time. The latest update contains a cool feature, images on the right of the cell could be moved by finger if not releasing and when finger is releasing the image will go down and then invisible. This repo provides easy to use data object, cell, tableview controller and a sample for doing this.
Objective-C
49
star
10

RSCameraSwitchSample

A pure code implementation of http://dribbble.com/shots/929359-Camera-Switch with beautiful animations.
Objective-C
40
star
11

RSPOPPickerSheet

Fullscreen pop-able and block-able picker sheet.
Objective-C
20
star
12

WFH

能够远程办公(work from home)的公司名单
14
star
13

kustohelmize

Feel boring creating Helm Chart from scratch? Try Kustohelmize today!
Go
13
star
14

iperf-iOS

Adapted iPerf3 iOS sample
C
12
star
15

RSPOPAlertView

Fullscreen pop-able and block-able alert view.
Objective-C
10
star
16

RSSQLiteEncryptSample

This Repo demonstrated HOW to encrypt a sqlite db using sqlcipher https://github.com/sqlcipher/sqlcipher
Objective-C
7
star
17

RSBmobWrapper

Bmob http://www.codenow.cn/ 是一个专门为移动应用程序开发提供所有必须的后端服务的产品(相当于Parse国内版)。从简单的数据存储到复杂的用户管理,数据分析,所有的功能都是为程序开发人员精心制作。无论多么复杂的后端,Bmob都提供了超级简单的原生软件开发工具包和API。来一起了解Bmob的特点和几行代码,您可在数分钟内开始运作你的移动应用。这个Repo提供了新的基类和Bmob相关内容的封装。
Objective-C
7
star
18

iOS-relative-view-layout-helper

UIView category: implements MS WPF style layout helper. Using margin (thickness), alignments to layout view inside its super view or beside one another view.
Objective-C
6
star
19

aihuishou

hpple demo展示如何获取爱回收的所有图标和机型
Objective-C
5
star
20

Lottery

简易年会抽奖程序 for iPad。
Objective-C
4
star
21

iphone-wireless

Automatically exported from code.google.com/p/iphone-wireless
Objective-C
4
star
22

kubemulti

A kubectl plugin to query multiple namespace at the same time.
Go
3
star
23

RSExpandableTableViewCell

Expandable tableview cell, working in progress.
Objective-C
2
star
24

RSSafariAddressBar

iOS 7 Safari address bar alike control, working in progress.
Objective-C
2
star
25

RSImageFitness

UIImage category to get fitness image.
Objective-C
2
star
26

AFNetworking

A delightful iOS and OS X networking framework
Objective-C
1
star
27

DZNWebViewController

A simple web browser for iPhone & iPad with similar features than Safari's
Objective-C
1
star
28

ECMobile_PHP

ECMobile API
PHP
1
star
29

minio

Go
1
star
30

RSBlingBling

Swift
1
star
31

Greent

Objective-C
1
star
32

yeahdongcn.github.io

HTML
1
star
33

ImVIP

Objective-C
1
star
34

k8s

A collection of scripts to boost k8s local development. Tested on m1 mbp.
Shell
1
star
35

slowhttptest

Automatically exported from code.google.com/p/slowhttptest
C++
1
star
36

TurtleRock

JavaScript
1
star
37

GCompare

Swift
1
star