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
Describe the bug When I use cropViewController on iPad with cropingStyle circular CropViewController delegate method is not calling.
The text was updated successfully, but these errors were encountered:
Just thought I should add that I don't see this problem in my app; CropViewCroppingStyleCircular on iPad seems to call my delegate just fine.
CropViewCroppingStyleCircular
Sorry, something went wrong.
Also I facing issue in Swift No Delegate methods will be call
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey : Any]) { guard let image = (info[UIImagePickerController.InfoKey.originalImage] as? UIImage) else { return } let cropController = CropViewController(croppingStyle: .default, image: image) //cropController.modalPresentationStyle = .fullScreen cropController.delegate = self if picker.sourceType == .camera { picker.dismiss(animated: true, completion: { self.present(cropController, animated: true, completion: nil) }) } else { picker.pushViewController(cropController, animated: true) } }
TimOliver
No branches or pull requests
Describe the bug
When I use cropViewController on iPad with cropingStyle circular CropViewController delegate method is not calling.
The text was updated successfully, but these errors were encountered: