반응형
ios 9 -- http 사이트 접속 장애 해결하기
환경 : 맥 요세미티, ios9, xcode 7.1.1, objective-C
참고 :
http://stackoverflow.com/questions/31254725/transport-security-has-blocked-a-cleartext-http
< 문제점 >
xcode 7 에서 NSURLConnection 로 http 사이트 접속시 아래와 같은 에러 발생한다.
App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure.
< 해결책 >
Info.plist 에 아래 그림의 빨간 박스 부분을 입력하고 실행하면 ok!
NSAppTransportSecurity 입력후 엔터치면 App Transport Security Settings 라고 자동으로 바뀐다.
** 참고
The APIs that provide App Transport Security (ATS) are the NSURLConnection and NSURLSession classes and the CFURLRef opaque type.
반응형
'swift, objective-C' 카테고리의 다른 글
Objective C -- 문법정리 : block (0) | 2016.03.21 |
---|---|
Objective C -- 문법정리 : 함수, 메소드 (0) | 2016.03.21 |
swift 2.0 -- 지도 위치 이동 추적하기 (0) | 2015.09.28 |
swift 2.0 -- mapview 사용하여 현재 위치 표시 따라하기 (0) | 2015.09.24 |
swift 2.0 -- parse 로그인 따라하기 (0) | 2015.09.22 |