An open API service indexing awesome lists of open source software.

https://github.com/meniny/quickresponsecode

📲 A tiny Quick Response Code (QRCode) library for iOS written in Swift
https://github.com/meniny/quickresponsecode

qrcode qrcode-encoder qrcode-generator qrcode-scanner

Last synced: 26 days ago
JSON representation

📲 A tiny Quick Response Code (QRCode) library for iOS written in Swift

Awesome Lists containing this project

README

        


QuickResponseCode


Version
Author
Build Passing
Swift


Platforms
MIT


Cocoapods
Carthage
SPM

## What's this?

`QuickResponseCode` is a tiny Quick Response Code (QRCode) library for iOS written in Swift.

## Requirements

* iOS 8.0+
* tvOS 9.0+
* Xcode 9 with Swift 4

## Installation

#### CocoaPods

```ruby
use_frameworks!
pod 'QuickResponseCode'
```

## Contribution

You are welcome to fork and submit pull requests.

## License

`QuickResponseCode` is open-sourced software, licensed under the `MIT` license.

## Usage

```swift
import QuickResponseCode

func generate() {
let qr = QRCode(string: textView.text,
size: imageView.bounds.size,
foreground: UIColor.random,
background: UIColor.random,
correction: .low)
let iconedimage = qr.iconedImage(#imageLiteral(resourceName: "icon"))
let image = qr.image
}

func generate2() {
let image = UIImage.QRCodeImage(from: textView.text,
size: imageView.bounds.size,
foreground: UIColor.random,
background: UIColor.random,
correction: .low)
}

func generate3() {
let image = "SourceString".QRCodeImage(size: imageView.bounds.size,
foreground: UIColor.random,
background: UIColor.random,
correction: .low)
}
```