vote up 2 vote down star
3

Hi,

how do I add an overlay (UIImageView) to the camera preview and handle touches on this?

My previous attempts to do this (e.g. use UIImagePickerController and add the image as a subview) have failed.

alt text

flag

67% accept rate
2  
Awesome drawing! – rpetrich Jun 17 at 0:29
1  
did you end up solving this? – Ben Daniel Sep 7 at 10:41

2 Answers

vote up 3 vote down

You may be able to add the UIImageView as a subview of the main window directly instead of the UIImagePicker, it may work better. Just make sure to add them in the right order, or call

[window bringSubviewToFront:imageView];

after the camera is up.

If you want to handle touches on the UIImageView you could just add the UIImageView as a subview of a normal fullscreen View with a transparent background, and add that to the window instead, with a normal UIViewController subclass that you can use to handle the touch events.

link|flag
vote up -2 vote down

AFAIK it is not possible at all.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.