Hi,
I want to show an iframe with in my app. But the webpage in the iframe is not loaded in iOS.
On android it works and loads fine.
In my config.xml i have white listed everything:
<access origin="*"/>
I also use $sce for making the URL trusted
$scope.iframe_url = $sce.trustAsResourceUrl(decodeURIComponent($scope.url));
In the template i show the iframe:
`
Also doneLoading() is never called.
I don’t get an error page or anything. Just a white screen
Thanks!