##未使用変数の警告##
使用していない変数がある場合に発生する警告
未使用変数を削除するか
Initialization of immutable value 'videoLayer' was never used; consider replacing with assignment to '_' or removing it
##ラムダ式で型が曖昧な場合に出るエラー##
多々書籍内でも修正前の記述になっているので要注意
self.ImageOut.captureStillImageAsynchronouslyFromConnection(videoConnection, completionHandler:{(imageDataBuffer, error)->Void in
・・・
})
self.ImageOut.captureStillImageAsynchronouslyFromConnection(videoConnection, completionHandler:{(imageDataBuffer:CMSampleBufferRef, error:NSError)->Void in
・・・
})
type of expression is ambiguous without more context