1. 문제 상황

 

App Transport Security has blocked a cleartext HTTP connection tom-crew.iptime.orgsince it is insecure. Use HTTPS instead or add this domain to Exception Domains in your Info.plist.

App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Use HTTPS instead or add Exception Domains to your app's Info.plist.

Code는 정상이지만, https가 아닌 http 연결을 시도할 경우 xcode 자체적으로 막아주는 기능이 기본 내장되어 있습니다.

 

 

 

 

 

2. 해결 방법

 

http에 연결하는 것을 개발자가 인지했고, 문제 없다고 판단시 해당 설정을 수정해 http 연결이 가능하도록 할 수 있습니다.

 

App Transport Security Settings
    Allow Arbitrary Loads
    // NO -> YES 로 바꿉니다.

 

 

 

 

3. 해결 완료

 

보라색 세모 Warning이 사라지고 잘 작동됩니다.

 

 

 

+ Recent posts