Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UIImagePicker cameraOverlayView appears on Retake screen

I am struggling with a problem. I am capturing a video, and i had put an UIImageView with an UIImage in it as the UIImagePicker CameraOverLay. So when the user starts the camera in order to capture a video, he can see an overlay on the camera. When the user stops capturing, and is being moved to the "cancel or Retake" screen of the UIImagePicker, the cameraOverlayView is still visible.

any ideas on how to not display the overlay in the "retake or cancel" screen?

like image 213
Raz Avatar asked Jul 30 '13 08:07

Raz


1 Answers

Solved by signing up to NSNotificationCenter, and listening to @"_UIImagePickerControllerUserDidCaptureItem" and @"_UIImagePickerControllerUserDidRejectItem".

like image 159
Raz Avatar answered Oct 21 '22 02:10

Raz