[IOS] HTTP 접근 허용


[IOS] HTTP 접근 허용

Xcode Property List 추가 방법 Xcode Property List Info.plist 추가 방법 "ios/Runner/Info.plist" 모두 허용 <key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key> <true/> </dict> 특정 도메인만 허용 <key>NSAppTransportSecurity</key> <dict> <key>NSExceptionDomains</key> <dict> <key>daheenallwhite.github.io</key> <dict/> <key>NSIncludesSubDomains</key> <true/> <key>NSExceptionAllowsInsecureHTTPLoads</key> <true/> </dict> <key>NSAllowsArbitraryLoads</key> <false/> </dict>...


#http #http접근 #http통신 #ios

원문링크 : [IOS] HTTP 접근 허용