gpt4 book ai didi

ios - 类实例的所有存储属性必须在从初始化器抛出之前初始化

转载 作者:搜寻专家 更新时间:2023-11-01 06:21:25 24 4
gpt4 key购买 nike

我有一个类来处理 AVFoundation 的电影录制。如果设置的任何部分失败,初始化程序将抛出错误。失败错误:

"All stored properties of a class instance must be initialized before throwing from an initialize"

当尝试从初始化器创建变量时会发生这种情况,如果初始化失败也会抛出错误。

let captureInputDevice = try AVCaptureDeviceInput(device: device)

代码:

enum MovieRecorderError : ErrorType {
case CouldNotInitializeCamera
}

class MovieRecorder: NSObject {

init(previewLayer: UIView) throws {
// Scan through all available AV capture inputs
for device in AVCaptureDevice.devicesWithMediaType(AVMediaTypeVideo) as! [AVCaptureDevice] {
if device.position == .Back {
do {
let captureInputDevice = try AVCaptureDeviceInput(device: device)
} catch {
throw MovieRecorderError.CouldNotInitializeCamera
}
}
}
}
}

问题

这个问题是在一个抛出错误的函数中实例化一个抛出错误的变量引起的吗?

最佳答案

Is this problem caused by instantiating a variable that throws an error, inside a function that throws an error?

是的。您正在一个不可失败的初始化程序中执行 do...catch。这意味着在某些情况下可能无法正确进行初始化。必须先完成初始化才能抛出。例如,在您显示的代码中,如果您将 super.init() 添加为初始化程序的 first 行,则一切正常,因为您已完成初始化 throw 前。

如果初始化可能会失败,您可能会更舒服,编写一个可失败的初始化程序 (init?)。

编辑:请注意,从 Swift 2.2 开始,此要求将被取消:完成初始化之前抛出是合法的。

关于ios - 类实例的所有存储属性必须在从初始化器抛出之前初始化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33375431/

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