1. 문제 상황
The resource could not be loaded because the App Transport Security policy requires the use of a secure connection." UserInfo={NSLocalizedDescription=The resource could not be loaded because the App Transport Security policy requires the use of a secure connection., NSErrorFailingURLStringKey
2. 문제 원인
HTTP 통신을 Xcode 자체적으로 Block하기에 발생하는 이슈입니다.
3. 해결 방법
info.plist에서 설정값을 수정 혹은 추가해주면 됩니다.
위처럼 설정이 없다면, 추가해주면 됩니다.
App Transport Security Settings
// Dictionary
Allow Arbitary Loads
// Boolean : YES
'Development > iOS' 카테고리의 다른 글
[SwiftUI] API Get으로 Data 받아서 앱에 띄우기 (0) | 2023.03.29 |
---|---|
[SwiftUI] data를 model.swift 파일에 맞는 코드로 변환해주는 사이트 (0) | 2023.03.27 |
[SwiftUI] 입문4 - View, State (0) | 2023.03.24 |
[SOLVED][Swift] Closure containing control flow statement cannot be used with result builder 'ViewBuilder' (0) | 2023.03.22 |
[SwiftUI] 입문3 - Spacer, Padding, Frame을 활용한 요소 배치 (0) | 2023.03.21 |