From 24a84e2b4f705da6f173e94d04a258fee5ec413b Mon Sep 17 00:00:00 2001 From: "Neel S." Date: Thu, 22 May 2025 03:46:10 +0900 Subject: [PATCH] Update README.md missing self. in example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7a3d13d7..268f20ba 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ func presentCropViewController() { let cropViewController = CropViewController(image: image) cropViewController.delegate = self - present(cropViewController, animated: true, completion: nil) + self.present(cropViewController, animated: true, completion: nil) } func cropViewController(_ cropViewController: CropViewController, didCropToImage image: UIImage, withRect cropRect: CGRect, angle: Int) {