I want to use UIImagePickerController takePicture method.
the problem his that the UIImagePickerController is not show in the screen and the user cannot press the Use button to accept the img.
Is there is any way to skip this screen and go straight to :
-(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
for saving the image?
The only way that I have found to do this is to use a custom overlay for UIImagePickerController. You can do that with code akin to that below:
Now once the takePicture method is called, the delegate didFinishPickingMediaWithInfo: will be called immediately like you desire.