Skip to content

Instantly share code, notes, and snippets.

@paulofierro
Last active September 28, 2021 13:22
Show Gist options
  • Save paulofierro/1f4f7a285c696bd0dba6c9fc17b9d757 to your computer and use it in GitHub Desktop.
Save paulofierro/1f4f7a285c696bd0dba6c9fc17b9d757 to your computer and use it in GitHub Desktop.
let request = VNDetectBarcodesRequest(completionHandler: nil)
if #available(iOS 15, *) {
request.symbologies = [.pdf417]
} else {
request.symbologies = [.PDF417]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment