ポートレート モードだけでなく、ランドスケープ モードでも写真を撮りたいですか?? 以下は私のコードですが、ここではポートレートモードでプレビューを取得します oly 、ランドスケープモードでそれが必要な場合は、プレビューがポートレートモードでのみ取得されるため、カスタムメソッドを使用して UIImagePickerViewController を作成する必要があります。
ただし、必要なモードのいずれかで写真を撮ることができます。下のこのコードを参照してください..
-(void)cameraAction
{
// Create image picker controller
UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];
// Set source to the camera
imagePicker.sourceType = UIImagePickerControllerSourceTypeCamera;
// Delegate is self
imagePicker.delegate = self;
// Allow editing of image ?
imagePicker.allowsEditing = NO;
if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera])
{
NSLog(@"called");
// Show image picker
[self presentModalViewController:imagePicker animated:YES];
}
else
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error accessing the camera" message:@"Camera did not respond" delegate:nil cancelButtonTitle:@"Cancel" otherButtonTitles:nil];
[alert show];
[alert release];
}
}
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
// Access the uncropped image from info dictionary
UIImage *image = [info objectForKey:@"UIImagePickerControllerOriginalImage"];
[picker release];
[self dismissModalViewControllerAnimated:NO];
editImageView=[[EditImageViewController alloc] initWithNibName:@"EditImageViewController" bundle:[NSBundle mainBundle]];
editImageView.delegate=self;
[self presentModalViewController:editImageView animated:YES];
[editImageView.imgView setImage:image];
}