In my application in the viewcontroller, which is inside the navigationController - I do this:
UIImagePickerController* imagePickerController_; imagePickerController_.sourceType = UIImagePickerControllerSourceTypeCamera; [self presentModalViewController:imagePickerController_ animated:YES];
and
@interface CustomViewController : UIViewController <UIImagePickerControllerDelegate>
It works without problems. If you still have problems, can you share some code? What navigation structure does your application have (tabbarcontroller, navigationcontroller, ...?) ?, how do you imagine the image manager?
source share