Swift Dictionary is nil when adding output settings

551 Views Asked by At

When accessing the camera and trying to capture a still, I get an error adding the output settings. It says that I can't add a nil to AVCaptureOutput

Here's the code:

var imageCaptured : AVCaptureStillImageOutput?

let outputSettings:Dictionary = [AVVideoCodecJPEG:AVVideoCodecKey]
imageCaptured?.outputSettings = outputSettings
captureSession.addOutput(imageCaptured) //error here

This is the error:

* Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* Can't add a nil AVCaptureOutput'

1

There are 1 best solutions below

3
On BEST ANSWER

You aren't setting imageCaptured to anything. It's nil.

For example how to initialize it, see How To Use AVCaptureStillImageOutput To Take Picture.