Iphone app is delayed for 10 -15 minutes when iphone is in sleep mode

前端 未结 4 758
隐瞒了意图╮
隐瞒了意图╮ 2021-01-07 13:43

I have created an app that uses NSTimer, which gets triggered each second.

My problem is that if the Iphone is in sleep mode i get a delay for 10 to 15 minutes befo

4条回答
  •  星月不相逢
    2021-01-07 14:06

    Well since no one has answered my three questions I will have to answer them:

    1. What could be the reason for the delay? I will have to quote Ben S:

    Once applicationWillResignActive gets called on your application you simply stop receiving events: The delegate can implement this method to make adjustments when the application transitions from an active state to an inactive state. When an application is inactive, it is executing but is not dispatching incoming events. This occurs when an overlay window pops up or when the device is locked.

    The point of sleep mode is to save energy. To do so, the device stops listening for events like the ones you're asking for. NSTimer events will still fire since they don't require expensive (battery-wise) hardware monitoring. Also, alarms are implemented using NSTimer, so they need to be able to function even when in sleep. Otherwise, people might not wake up and blame their iPhone.

    2. The mute sound solution seems to be a very "dirty" one. Is there some other way to solve this?
    No, currently I haven't found another solution, please feel free to correct me if I'm wrong. Check out this blog post how to do it.

    3. If I use the mute sound solution will it the pass the apple review? Yes

提交回复
热议问题