0

i have to create a product presentation tool that runs offline on an ipad. i have a program wirtten in c# to create a presentation and this program has an export function, this export function creates a whole little homepage (only html and javascript) with the product slider - everything works fine, also the online presentation is perfect.

but the capital problem is, how could i run this offline on the ipad?

what i already tried: - put the scripts to dropbox and tried to start index.html on ipad (the local links doesnt work) - i tried to chache the whole page, but that was too much for caching..

there is also one solution i would prefer -> phonegap, but there i see the problem with creating the app... the c# programm should prepare everything, so the clients should take this exported file/files or direcotry and but it anywhere and the ipad should run this presentation offline.

thanks guys

Mathis Hüttl
  • 127
  • 3
  • 18

1 Answers1

0

You can try to make a simple app with UIWebView inside and load your local resources into this UIWebView.

Here are some similar questions on how to make it:

First

Second

Third

The way your clients are able to add the presentation files might be using iTunes File Sharing. And you can get these files from Documents directory

Hope this will help.

Community
  • 1
  • 1
keyv
  • 2,430
  • 1
  • 18
  • 15