일상+

IOS9업데이트 후 xcode 오류 Xcode setting ENABLE_BITCODE 본문

iPhone

IOS9업데이트 후 xcode 오류 Xcode setting ENABLE_BITCODE

이종준 2015. 9. 17. 10:06

Ios9 업데이트 이후 잘돌아가던 소스가 컴파일 오류가 났을때 


[setting ENABLE_BITCODE] 이런 문구가 있다면?


아래와같이 셋팅 해주면 된다.





App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.

CFNetwork SSLHandshake failed (-9824)

NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9824)

Error Domain=NSURLErrorDomain Code=-1022 "The resource could not be loaded because the App Transport Security policy requires the use of a secure connection."


위와같은 오류가 있다면?

아래 주소로 이동하세요.


NSAppTransportSecurity > NSAllowsArbitraryLoads : true 로 설정하면 ATS 를 비활성화 할 수 있습니다

Comments