我有一些代码
captureSession = AVCaptureSession()
captureSession!.sessionPreset = AVCaptureSessionPresetPhoto
let backCamera = AVCaptureDevice.defaultDevice(withMediaType: AVMediaTypeVideo) etc...
当然,这在模拟器上是行不通的。没问题。
如果您确实在模拟器上运行它,它会在此处正确崩溃
captureSession!.sessionPreset = AVCaptureSessionPresetPhoto
喜欢这个
出于好奇,您将如何“捕捉”该崩溃?
如果我尝试以不同的方式“尝试”它,
try captureSession!.sessionPreset = AVCaptureSessionPresetPhoto
我只会……
/Users/jpm/Desktop/development/-/classes/CameraPlane.swift:67:3: No calls to throwing functions occur within 'try' expression
你是如何包装和捕捉这种类型的电话的?
顺便说一句,对于专门处理相机中这种烦恼的人来说,
func cameraBegin()
{
captureSession = AVCaptureSession()
if ( AVCaptureDevice.devices().count == 0 )
{
print("Running on simulator.")
return
}
...
try
只能在调用 throws
的函数时使用。这些函数用 throws
显式标记。
如果你想安全地解开一个可选的(我猜这就是你想要实现的),你可以使用 guard
。
var number: Int?
guard let unwrappedNumber = number else {
return
}
print("number: \(unwrappedNumber)")
关于ios - 如何在 iOS 中尝试/捕获此类错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40439714/
欢迎光临 OGeek|极客世界-中国程序员成长平台 (https://ogeek.cn/) | Powered by Discuz! X3.4 |