gpt4 book ai didi

ios - 当应用程序在我的设备(iPhone 6)上快速运行时,“源 1 没有可用类型”

转载 作者:行者123 更新时间:2023-12-03 20:15:01 27 4
gpt4 key购买 nike

这突然之间,但是当我运行以下方法时,它会抛出“源 1 没有可用类型”错误,我查看了所有地方,人们说它在模拟器中很好,我正在我的 iPhone 上运行它6. 任何线索为什么?

func captureVideo(){
if(UIImagePickerController.isSourceTypeAvailable(UIImagePickerControllerSourceType.Camera)){
var date = NSDate()


var picker = UIImagePickerController()


picker.delegate = self
picker.allowsEditing = true;
picker.sourceType = UIImagePickerControllerSourceType.Camera
picker.mediaTypes = NSArray(objects: kUTTypeVideo)
var interval = NSTimeInterval(30)
picker.videoMaximumDuration = interval
picker.showsCameraControls = true;

self.presentViewController(picker, animated: true, completion: nil)

}

}

最佳答案

可能问题出在:

picker.mediaTypes = NSArray(objects: kUTTypeVideo)

将其更改为:
picker.mediaTypes = NSArray(objects: kUTTypeMovie)

用于视频录制 kUTTypeMovie不是 kUTTypeVideo .

根据 UIImagePickerController mediaTypes :

If you set this property to an empty array, or to an array in which none of the media types is available for the current source, the system throws an exception.



最好用 availableMediaTypesForSourceType:在为 mediaTypes 分配任何值之前。

关于ios - 当应用程序在我的设备(iPhone 6)上快速运行时,“源 1 没有可用类型”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27718181/

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