728x90
반응형
SMALL
안드로이드와 같이 특정버전(iOS 9) 이상부터는 http url 을 그냥 사용하지 못함. http 주소를 허용해 주어야 사용 가능함
추가하는 2가지 방법
* xml type 추가방법
프로젝트 > info.plist > 마우스 우클릭 > Open as > Source Code > 아래의 코드를 입력해 주면 됨
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
...
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
...
</dict>
</plist>
* default typ 추가방법
프로젝트 > info.plist > 클릭 > (리스트중에) Intomation Property list > App Transport Security settings > Allow Arbitrary Loads > YES 변경해주면 끝
'iOS Study' 카테고리의 다른 글
Apple login(email relay)인증메일 발송에 연결시키기 (4) | 2021.05.28 |
---|---|
Xcode 12.5 버전(최신버전)에서 ios Device 13 미만 에서 새 프로젝트 앱 실행 시키기 (0) | 2021.05.21 |
Apple login(Sign In Apple) (0) | 2021.05.12 |
iOS 디바이스 해상도 참고 (0) | 2021.05.07 |
ios 앱 스토어 국가 설정 (0) | 2021.02.26 |