iOS Study

http url 사용하기

85chong 2021. 2. 15. 07:46
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 변경해주면 끝