swift 경고, 오류 요약

1011 단어 Swiftwarning경고

변수 경고가 사용되지 않음


사용되지 않은 변수가 있을 때 발생하는 경고
사용되지 않은 변수 삭제
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

좋은 웹페이지 즐겨찾기