Hi,
Does anyone have any ideas on this? This is what I'm doing.
When the button to take a picture is pressed, I'm doing:
Code:
overlayView.tag = 10;
[picker.view addSubview:overlayView];
[picker.view bringSubviewToFront:overlayView];
Then in the didFinishPickingImage delegate method, I'm removing it like this:
Code:
[[picker.view viewWithTag:10] removeFromSuperview];
The problem is - didFinishPickingImage delegate method only gets called after the preview image has been confirmed. So my overlay image keeps on displaying on the preview as well - which I'd like to remove.
Any ideas?