Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iPad Home Screen App refreshes on every open

I'm writing a web app for the iPad using HTML5 and SenchaTouch. The app uses cache manifest to function offline. Once it has been added in the home screen and opened without Safari, it will refresh itself every time it is opened, even if just navigating to the home screen and back. The desired behavior is to leave the app, do something else, and then come back to the app with everything untouched.

An example of a similar app that displays the same (undesired) behavior can be found here: http://ignitedmediadesign.com/WebApp/index.html

I've read that using a cache manifest should have solved this problem on iPhone ( http://www.stevesouders.com/blog/2011/06/28/lack-of-caching-for-iphone-home-screen-apps/ ), but doesn't seem to have done the trick for either iPhone or iPad.

Is there another way to fix this? Is there some secret to cache manifest files that stops this that I may have missed?

like image 666
Ryan Avatar asked Jul 13 '11 22:07

Ryan


People also ask

Why do my apps refresh every time I open them?

Your background apps are constantly running and refreshing themselves, whether by using cellular data or your Wi-Fi. Naturally, this can increase your data usage, consume a lot of RAM, and drain your phone's battery life.

How do I stop an app from refreshing on my iPad?

To prevent an app from using mobile data in the background, head to Settings > Apps (Apps & notifications on older versions) > See all X apps. Tap the app in the list that you want to disable background app refresh for.

How do you make your apps stop refreshing?

Open the Settings app and tap General, and then Background App Refresh. You'll see a list of every app that currently has permission to run in the background. To turn off Background App Refresh for every app, tap the option at the top of the screen.

Why are my apps randomly resetting?

In most cases, random restarts are caused by a poor quality app. Try uninstalling apps you don't use. Be sure the apps you do use are reliable, especially the apps that handle email or text messaging.


1 Answers

I'm under the impression this is simply the nature of the "home screen" web apps that operate outside of normal Safari. I have an app that operates just fine in Safari with some minimal state saving, but the blasted non-Safari version refreshes every time. EDIT: Even the showcased O’Reilly example that uses a cache manifest reloads every time when added to the home screen.

You may want to look into creating "routes" (URL fragments) that point to a controller/action pair. Look into the MVC PhoneGap example (If not using PhoneGap, you can scroll past all of that stuff and implement your own data model and store). Also see this Sencha Touch MVC tutorial.

Also, most of the rendered sencha touch components seem to maintain state between changes of the active item. For example. I have a main TabPanel that contains all sub panels. When switching between tabs on the main TabPanel's TabBar, each sub panel maintains its rendering, unless I've set a listener or controller action to do otherwise.

Hope this helps.

like image 155
Old McStopher Avatar answered Nov 09 '22 15:11

Old McStopher