Respected Sir,
Here i am using the uiimagepickercontroller to open the camera and taking the picture its ok.But how i need to lock the landscape mode for uiimagepickercontroller.Here i attached the some code of lines
UIImagePickerController *imgPkr = [[UIImagePickerController alloc] init];
imgPkr.delegate = self;
imgPkr.sourceType = UIImagePickerControllerSourceTypeCamera;
imgPkr.cameraDevice=UIImagePickerControllerCameraDeviceFront;
imgPkr.cameraOverlayView = anImageView;
[theApp.TabViewControllerObject presentModalViewController:imgPkr animated:YES];
[imgPkr release];
Thanks
You can not control
UIImagePickerController.Use
AVFoundation, you will have full control on handling the cameraFor use of AVFoundation , look this apple example
Link