HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – swift 3中的dispatchqueue显示为未解析的标识符大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Swift 3.0 unresolved identifier for DispatchQueue2个
我试图在主线程上异步拍摄/录制视频.但是,当我调用dispatch.main.async时,我总是收到错误
use of unresolved identifier DispatchQueue

从WWDC到Apple的文档我到处都是,但我看不到这种类型被弃用的证据.

这是代码

if !self.cameraENGIne.isRecording {
            if let url = CameraENGIneFileManager.temporaryPath("video.mp4") {
                self.cameraButton.settitle("stop recording",forState: [])
                self.cameraENGIne.startRecordingVideo(url,blockCompletion: { (url: NSURL?,error: NSError?) -> (Void) in
                    if let url = url {

                        DispatchQueue.main.async {
                            self.cameraButton.settitle("start recording",for: .normal)
                            CameraENGIneFileManager.saveVideo(url,blockCompletion: { (success: Bool,error: Error?) -> (Void) in
                                if success {
                                    let alertController =  UIAlertController(title: "success,video saved !",message: nil,preferredStyle: .alert)
                                    alertController.addAction(UIAlertAction(title: "Ok",style: .default,handler: nil))
                                    self.present(alertController,animated: true,completion: nil)
                                }
                            })
                        }
                    }
                })
            }
        }
        else {
            self.cameraENGIne.stopRecordingVideo()
        }
    }

解决方法

你可以放
import Foundation

要么

import Dispatch

代码的开头,开始使用DispatchQueue类没有任何问题.

大佬总结

以上是大佬教程为你收集整理的ios – swift 3中的dispatchqueue显示为未解析的标识符全部内容,希望文章能够帮你解决ios – swift 3中的dispatchqueue显示为未解析的标识符所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。