我是iOS和Objective C的新手,我正在尝试设计一些需要拍摄两张连续照片的照片(并同时保存它们)并且刚学会了如何在iOS 5中使用相机,所以我是想知道如何实现这样的东西。 我需要能够打开相机,拍照,保存,然后再次使用相机自动跟随拍摄另一张照片
Pd积。我一直用它来使用相机:
- (void) useCamera
{
if ([UIImagePickerController isSourceTypeAvailable:
UIImagePickerControllerSourceTypeCamera])
{
UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];
imagePicker.delegate = self;
imagePicker.sourceType = UIImagePickerControllerSourceTypeCamera;
imagePicker.mediaTypes = [NSArray arrayWithObjects:(NSString *) kUTTypeImage,nil];
imagePicker.allowsEditing = NO;
[self presentModalViewController:imagePicker animated:YES];
newMedia = YES;
}
}
答案 0 :(得分:0)
提示:使用AVCaptureDevice,AVCaptureDeviceInput,AVCaptureStillImageOutput,AVCaptureSession。
答案 1 :(得分:0)