iOS/오류해결

[iOS, Swift] Call can throw, but it is not marked with 'try' and the error is not handled

검은참깨두유vm 2022. 11. 21. 16:21
반응형

iOS 16, Xcode 14, Swift 5, UIKit 환경에서 진행했습니다.

 

상황) throw를 던지는 상황에서 함수를 호출 시에 위와 같은 오류가 발생함

 

해결방법) 코드에 try 구문을 추가하여 throw를 처리

try await videoTrack.load(.preferredTransform)

 

반응형