我正在使用 UIImagePickerViewController,我想打开相机胶卷。但是,在我的应用程序中,我有一个按钮可以打开我的相机胶卷,还有一个按钮可以打开我的相机。当我拍照或录制视频时,显然我想在我的相机胶卷中看到这些图像。但是,在我的应用程序中,当我开始录制视频时,他并没有出现在我的相机胶卷应用程序中。
这里有一点代码:
UIImagePickerController *cameraRoll = [[UIImagePickerController alloc] init];
[cameraRoll setSourceType:UIImagePickerControllerSourceTypePhotoLibrary];
[cameraRoll setDelegate:self];
[self presentModalViewController:cameraRoll animated:YES];
目前,我无法在我的相机胶卷应用中看到我的视频。有人可以帮助我吗?