because iframe on ios does not work?

0

Hello friends I need help I have created an app in cordova and embedded in an iframe part with a web, but this is not displayed iframe is empty, and the console does not show any error. Do any of you know why this is happening?

    
asked by Simon Montoya 29.09.2016 в 18:41
source

2 answers

1

Why do not you better use the cordova 'packager'?

From terminal access to the directory of your project and type the following to add the iOS platform

  

cordova platform add ios

Gener the package for iOS

  

cordova build ios

Test in the simulator

  

cordova emulate ios

To open the project generated by cordova for XCODE go to the next route

  

PATH_DE_PROJECT / platforms / ios

    
answered by 14.10.2016 в 21:33
0

You have to configure the URLs to which you want your app to navigate, this is done with the allow-navigation tag in the config.xml

<allow-navigation href="http://tupagina.com/*" />

If you want to allow navigation to any page then use a *

<allow-navigation href="*" />

    
answered by 02.11.2016 в 09:12