Is it possible to insert a Subview between UIImagePickerController and the Take Picture dialog? I have an image that I want to appear on top of the camera view, but underneath the Take Picture buttons. I've tried variations on each of the below:
Code:
[picker.view sendSubviewToBack:cameraOverlay];
[picker.view bringSubviewToFront:cameraOverlay];
[picker.view insertSubview:cameraOverlay atIndex:1];
The image is in a Subview, and I can get it to appear on top of everything or behind everything, but not in between. Thanks for your assistance.