We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm not getting any output string. My code is below
@IBAction func takePhoto(_ sender: Any) { imagePicker = UIImagePickerController() imagePicker.delegate = self imagePicker.sourceType = .camera present(imagePicker, animated: true, completion: nil) } func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey : Any]) { imagePicker.dismiss(animated: true, completion: nil) imageView.image = info[.originalImage] as? UIImage myImage = (info[.originalImage] as? UIImage)! } @IBAction func btnTapped(_ sender: Any) { print("Btn tapped") swiftOCRInstance.recognize(myImage) { recognizedString in // print(self.myImage) print(recognizedString) // self.outputLbl.text = recognizedString } }
The text was updated successfully, but these errors were encountered:
Junaid how have you converted to swift 5. Can you help me out. I'm stuck
Sorry, something went wrong.
I didn’t convert to swift 5
Which version of swift are you using?
It doesnt support for my 4.2
No branches or pull requests
I'm not getting any output string. My code is below
The text was updated successfully, but these errors were encountered: