1

I have an UIWebView which loads sites that made in HTML5. A manifest is implemented too. So my question is can I use the HTML5 AppCache or do I have to develope it by myself?

This post tells me that the UIWebView can't use the HTML5 AppCache. Is that correct?

Community
  • 1
  • 1
Premox
  • 323
  • 10
  • 25

1 Answers1

0

It can be done, but you're limited to only about 5MB of cache storage. You build a .manifest file which tells UIWebView which files to cache. You should read your indicated post for further information.

Owen Hartnett
  • 5,925
  • 2
  • 19
  • 35
  • Thx for your answer. Did I have to activate something? If I turn of WiFi the site has to load but the only thing I got is a white site. `Manifest` exists, website is developed in `HTML5` so offline should work. I tried so many things, googled and nothing worked. It's annoying. I thought I will load the source code of the website, saving them into a specific directory and call the file like the URL but it doesn't seems to be the best way – Premox Aug 30 '16 at 17:24