Ready for use on iOS 13+.
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift
compiler. It’s integrated with the Swift build system to automate the process of downloading, compiling, and linking dependencies.
Once you have your Swift package set up, adding as a dependency is as easy as adding it to the dependencies
value of your Package.swift
.
dependencies: [
.package(url: "https://github.com/sparrowcode/SPQRCode", .upToNextMajor(from: "1.0.4"))
]
If you prefer not to use any of dependency managers, you can integrate manually. Put Sources/SPQRCode
folder in your Xcode project. Make sure to enable Copy items if needed
and Create groups
.
Example for handle QRCode.
SPQRCode.scanning(
detect: { data, controller in
return data
},
handled: { data, controller in
controller.dismiss(animated: true)
},
on: viewController
)
If you want allow handle only specific type, like url or Ethereum wallet, in detect
handler retun nil
if you don't want handle current QR code data.