iPod app stops responding after iPod returns from standby mode - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T04:53:12Z http://stackoverflow.com/feeds/question/1058808 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1058808/ipod-app-stops-responding-after-ipod-returns-from-standby-mode 0 iPod app stops responding after iPod returns from standby mode Kim 2009-06-29T15:01:56Z 2009-09-16T00:05:05Z <p>The GUI of my application stops responding after the iPod has been in standby mode. The application I have made is based on the "Utility application" template from the wizard in xcode - but the original application still works after the iPod returns from standby. My application plays music (AudioUnit) and when the iPod enters standby the music stops but when the iPod leaves standby mode the music starts playing again but as mentioned the GUI does not respond to touches anymore. All I can do is to shut it down.</p> <p>I have read about this problem here: <a href="http://stackoverflow.com/questions/411436/what-happens-to-an-iphone-app-when-iphone-goes-into-stand-by-mode">http://stackoverflow.com/questions/411436/what-happens-to-an-iphone-app-when-iphone-goes-into-stand-by-mode</a></p> <p>but that did not help me enough to solve the problem. </p> http://stackoverflow.com/questions/1058808/ipod-app-stops-responding-after-ipod-returns-from-standby-mode/1060950#1060950 0 Answer by Rhythmic Fistman for iPod app stops responding after iPod returns from standby mode Rhythmic Fistman 2009-06-29T22:44:52Z 2009-06-29T22:52:44Z <p>Sounds like your Audio Unit has been stopped.</p> <p>If your GUI relies on the AU's progress then that would explain the problem.</p> <p>Check your AU's state in <code>applicationDidBecomeActive</code>.</p> <p>I didn't think standby mode stopped AUs, I thought only audio interruptions did that. Anyway, you should probably look at <code>AudioSessions</code> as well, as you'll find that phone calls, alarms, SMSs and ipod music will also stop your Audio Unit.</p> <p>Good luck.</p> http://stackoverflow.com/questions/1058808/ipod-app-stops-responding-after-ipod-returns-from-standby-mode/1061083#1061083 0 Answer by casademora for iPod app stops responding after iPod returns from standby mode casademora 2009-06-29T23:32:33Z 2009-06-29T23:32:33Z <p>Actually, I've been running into this problem on the iPod application itself, in just general daily use. That is, if you are using the 3.0 firmware OS, then this is most likely a bug in the iPhone. I guess you can relax, and know that it's probably not your own code that is causing the problem. I'd file a radar ticket with Apple if you haven't already so that they can address it in the next bug fix release.</p> http://stackoverflow.com/questions/1058808/ipod-app-stops-responding-after-ipod-returns-from-standby-mode/1068837#1068837 0 Answer by Kim for iPod app stops responding after iPod returns from standby mode Kim 2009-07-01T12:19:09Z 2009-07-01T12:19:09Z <p>Thank you for responding.</p> <p>I can trigger the problem by just turning the device off and on again while the application is running.</p> <p>As mentioned, if a create a new project from one of the templates it does not have this problem. I have then tried uncommenting the part where I use the Audio Unit but that did not help. This has made me think that maybe it is also related to my project settings. How do you reset the project settings? Sometimes xcode crashes and asks me if I want to reset the project settings but right now I can't get it to crash.</p> http://stackoverflow.com/questions/1058808/ipod-app-stops-responding-after-ipod-returns-from-standby-mode/1069450#1069450 0 Answer by Kim for iPod app stops responding after iPod returns from standby mode Kim 2009-07-01T14:30:52Z 2009-07-01T14:30:52Z <p>I have now read some of this: <a href="http://developer.apple.com/IPhone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/ApplicationEnvironment/ApplicationEnvironment.html" rel="nofollow">http://developer.apple.com/IPhone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/ApplicationEnvironment/ApplicationEnvironment.html</a></p> <p>And implemented the applicationWillResignActive and the applicationDidBecomeActive methods but how do I make the GUI respond to touch events again? Should that not happen automatically?</p> http://stackoverflow.com/questions/1058808/ipod-app-stops-responding-after-ipod-returns-from-standby-mode/1069900#1069900 0 Answer by Kim for iPod app stops responding after iPod returns from standby mode Kim 2009-07-01T15:42:19Z 2009-07-01T15:42:19Z <p>It all happens just because I have an UISlider in an UIToolbar. If I remove the UISlider from my GUI it still responds after waking up from standby/sleep mode.</p> <p>Can someone explain me why that causes this problem (is it a bug in Apple's code)?</p> http://stackoverflow.com/questions/1058808/ipod-app-stops-responding-after-ipod-returns-from-standby-mode/1073121#1073121 0 Answer by Kim for iPod app stops responding after iPod returns from standby mode Kim 2009-07-02T08:15:18Z 2009-07-02T08:15:18Z <p>The solution is here: <a href="http://www.iphonedevsdk.com/forum/iphone-sdk-development/4558-app-crashing-upon-quit.html" rel="nofollow">http://www.iphonedevsdk.com/forum/iphone-sdk-development/4558-app-crashing-upon-quit.html</a></p> <p>Simply don't put a slider in a toolbar. Make a work around so it looks like the slider is in the toolbar instead. It is a bug in Apple's code. </p>