ios - 如何在 iOS 中尝试/捕获此类错误
<p><p>我有一些代码</p>
<pre><code> captureSession = AVCaptureSession()
captureSession!.sessionPreset = AVCaptureSessionPresetPhoto
let backCamera = AVCaptureDevice.defaultDevice(withMediaType: AVMediaTypeVideo) etc...
</code></pre>
<p>当然,这在模拟器上是行不通的。没问题。</p>
<p>如果您确实在模拟器上运行它,它会在此处正确崩溃</p>
<pre><code> captureSession!.sessionPreset = AVCaptureSessionPresetPhoto
</code></pre>
<p>喜欢这个</p>
<p> <a href="/image/MH3rS.png" rel="noreferrer noopener nofollow"><img src="/image/MH3rS.png" alt="enter image description here"/></a> </p>
<p>出于好奇,您将如何“捕捉”该崩溃?</p>
<p>如果我尝试以不同的方式“尝试”它,</p>
<pre><code> try captureSession!.sessionPreset = AVCaptureSessionPresetPhoto
</code></pre>
<p>我只会……</p>
<blockquote>
<p>/Users/jpm/Desktop/development/-/classes/CameraPlane.swift:67:3: No calls to throwing functions occur within 'try' expression</p>
</blockquote>
<p>你是如何包装和捕捉这种类型的电话的?</p>
<hr/>
<p>顺便说一句,对于专门处理相机中这种烦恼的人来说,</p>
<pre><code>func cameraBegin()
{
captureSession = AVCaptureSession()
if ( AVCaptureDevice.devices().count == 0 )
{
print("Running on simulator.")
return
}
...
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p><code>try</code> 只能在调用 <code>throws</code> 的函数时使用。这些函数用 <code>throws</code> 显式标记。</p>
<p>如果你想安全地解开一个可选的(我猜这就是你想要实现的),你可以使用 <code>guard</code>。</p>
<pre><code>var number: Int?
guard let unwrappedNumber = number else {
return
}
print("number: \(unwrappedNumber)")
</code></pre></p>
<p style="font-size: 20px;">关于ios - 如何在 iOS 中尝试/捕获此类错误,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/40439714/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/40439714/
</a>
</p>
页:
[1]