-
-
Notifications
You must be signed in to change notification settings - Fork 488
Installation Guide
EFQRCode is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "EFQRCode", '~> 1.2.4'
Then, run the following command:
$ pod install
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthage
To integrate EFQRCode into your Xcode project using Carthage, specify it in your Cartfile
:
github "EyreFree/EFQRCode" ~> 1.2.4
Run carthage update
to build the framework and drag the built EFQRCode.framework
into your Xcode project.
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift
compiler.
Once you have your Swift package set up, adding EFQRCode as a dependency is as easy as adding it to the dependencies
value of your Package.swift
.
dependencies: [
.Package(url: "https://github.com/EyreFree/EFQRCode.git", Version(1, 2, 4))
]
After installation, you could import EFQRCode to your project by adding this:
import EFQRCode
to the files in which you want to use this framework.
Once you prepared, continue to have a look at the Cheat Sheet to see how to use EFQRCode.
- Ask a question ...
- in discussions
- on Stack Overflow
- Submit an issue
- Open a pull request