gpt4 book ai didi

ios - 在 iOS 中打开包含视频和照片的图库

转载 作者:行者123 更新时间:2023-11-28 19:15:40 25 4
gpt4 key购买 nike

我正在使用 UIImagePickerViewController,我想打开相机胶卷。但是,在我的应用程序中,我有一个按钮可以打开我的相机胶卷,另一个按钮可以打开我的相机。当我拍照或录制视频时,显然我想在我的相机胶卷中看到这些图像。但是,在我的应用程序中,当我开始录制视频时,他并没有出现在我的相机胶卷应用程序中。

这里有一些代码:

UIImagePickerController *cameraRoll = [[UIImagePickerController alloc] init];

[cameraRoll setSourceType:UIImagePickerControllerSourceTypePhotoLibrary];

[cameraRoll setDelegate:self];
[self presentModalViewController:cameraRoll animated:YES];

目前我无法在相机胶卷的应用程序中看到我的视频。有人可以帮助我吗?

最佳答案

你可以这样做:

if([UIImagePickerController isSourceTypeAvailable:
UIImagePickerControllerSourceTypePhotoLibrary]) {

UIImagePickerController *picker= [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
picker.mediaTypes = [NSArray arrayWithObjects:(NSString *)kUTTypeMovie, (NSString *)kUTTypeImage, nil];

[self presentModalViewController:picker animated:YES];
}

在 PickerViewControllerObject“mediaTypes”的属性上设置您想要获取的文件类型,然后就可以了。

您可以找到 docs types here .

问候,路易斯

关于ios - 在 iOS 中打开包含视频和照片的图库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12165761/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com