Export my game to IOS

Hi :slight_smile: unfortunately there is no fast and easy way. Apple makes everything difficult. There are a few steps.

  1. Export the game manually using the Cordova build option.

  2. Open up the terminal / command line

  3. Type in โ€œcdโ€ and then the class path name. In other words, navigate to Cordova build directory.

  4. Type " cordova platform add ios "

  5. Type " cordova build ios"
    If done right, it should say build succeeded

  6. open up the folder, navigate to platforms, Ios, then the xcode game file.

  7. Xcode should open up, if youโ€™re game is not broken in some way, it should run on a simulator when you build it, or plug in your iphone and download it directly.

Hope this helps!