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 I'm presenting CropViewController and Back Button is not getting hidden.
To Reproduce
let cropViewController = CropViewController(image: obj.image ?? UIImage()) cropViewController.hidesNavigationBar = true cropViewController.navigationItem.hidesBackButton = true cropViewController.navigationController?.navigationBar.isHidden = true let width = screenWidth/9 if self.isFromCollection { cropViewController.customAspectRatio = CGSize(width: width*7, height: self.selectedImagesCollectionView.frame.height/1.5) } else { cropViewController.customAspectRatio = CGSize(width: width*9, height: width*16) } cropViewController.delegate = self cropViewController.resetButtonHidden = true cropViewController.rotateButtonsHidden = true cropViewController.rotateClockwiseButtonHidden = true cropViewController.aspectRatioPickerButtonHidden = true cropViewController.aspectRatioLockEnabled = true cropViewController.aspectRatioLockDimensionSwapEnabled = false cropViewController.resetAspectRatioEnabled = false self.present(cropViewController, animated: true, completion: nil)
Expected behavior I want to hide the navigation bar when I'm presenting CropViewController.
Screenshots
iOS Device:
The text was updated successfully, but these errors were encountered:
TimOliver
No branches or pull requests
Describe the bug
I'm presenting CropViewController and Back Button is not getting hidden.
To Reproduce
Expected behavior
I want to hide the navigation bar when I'm presenting CropViewController.
Screenshots
Simulator.Screen.Recording.-.iPhone.15.Pro.-.2024-07-05.at.17.19.39.mp4
iOS Device:
The text was updated successfully, but these errors were encountered: