How to run a background JavaScript in Phonegap on iPhone - for timerstopwatch? - Stack Overflow

My stopwatch script runs flawlessly in the background on Android (counting up the time), but iOS 4.3.2

My stopwatch script runs flawlessly in the background on Android (counting up the time), but iOS 4.3.2 seems to pause the script. On iOS the stopwatch stops at the time where the application was sent to background.

I need a runnning stopwatch (the time appears updated each second in the view) and some alarm messages in defined points in time.

The code for the stopwatch is as below:

        this.timer = window.setInterval(function(){
            instance.runtime += Stopwatch.INCREMENT;
            instance.doDisplay();
        }, Stopwatch.INCREMENT);

I'm aware of native solutions, but would like to stick with a JavaScript solution for the sake of cross-platform patibility.

My stopwatch script runs flawlessly in the background on Android (counting up the time), but iOS 4.3.2 seems to pause the script. On iOS the stopwatch stops at the time where the application was sent to background.

I need a runnning stopwatch (the time appears updated each second in the view) and some alarm messages in defined points in time.

The code for the stopwatch is as below:

        this.timer = window.setInterval(function(){
            instance.runtime += Stopwatch.INCREMENT;
            instance.doDisplay();
        }, Stopwatch.INCREMENT);

I'm aware of native solutions, but would like to stick with a JavaScript solution for the sake of cross-platform patibility.

Share Improve this question asked May 4, 2011 at 22:08 Michael SchmidtMichael Schmidt 3,5215 gold badges35 silver badges39 bronze badges 2
  • Hey I've been searching all over for detecting that an app is running in the background. Can you give me a remendation? – xdumaine Commented Jan 26, 2012 at 14:53
  • Does it work accurately on Android, I've tried making code that runs every 5 seconds, it works in background, but not in 5 seconds fixed interval, I think this is because the CPU sleeps, so Did you made it accurate ? How ? – Pola Edward Commented Jan 19, 2014 at 18:58
Add a ment  | 

1 Answer 1

Reset to default 6

Since setIntervals don't work in the background I'd use a recursive setTimeout instead.
Which means you can't keep track of time with a +=, so you'll need to use a (new Date).getTime(); or Date.now() instead.

this.timer = function myTimer () {
  instance.currentTime = (new Date).getTime();
  instance.doDisplay();
  setTimeout( myTimer, Stopwatch.INCREMENT ); 
}

If the setTimeout doesn't e back to life when the app does it should be simpler to restart.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744081632a4555403.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信