WebView를 통한 웹 조회 시, 비디오 플레이어에서 the media could not be loaded
에러 발생
src
확인 및 info.plist
에 http 필터링 되지 않도록 설정# info.plist
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSExceptionDomains</key>
<dict>
<key>!!!!!!!!!!URL!!!!!!!!!!</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
<key>!!!!!!!!!!URL!!!!!!!!!!</key>
<dict>
<!-- HTTP 연결 허용 -->
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
<!-- 서브 도메인 포함 -->
<key>NSIncludesSubdomains</key>
<true/>
<!-- 모든 써드파티 도메인에 대해 HTTP 연결 허용 (선택사항) -->
<key>NSThirdPartyExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>