It looks like the type will be [String: Int].
Actually, looking at the Xcode docs, he says that this value can be either a single number or an array. If it is an array, then the type will be [String: [Int]].
, :
let aVideoSetting: [String: Int] =
[kCVPixelBufferPixelFormatTypeKey: kCVPixelFormatType_32BGRA] videoOutput.videoSettings = aVideoSetting
100% Cocoa Swift, , .
NSDictonary :
let aPixelFormat = NSNumber(int: kCVPixelFormatType_32BGRA)
let settingsDict = NSDictionary(aPixelFormat
forKey: "numberWithUnsignedInt:kCVPixelFormatType_32BGRA")