Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

milktooth

macrumors member
Original poster
Oct 30, 2009
32
0
I'm writing a timer app.

Unlike Apple's Clock app, it cannot run in the background once the user has left the application.

Understandably, the user may not be aware of this. So, with that it mind, I would like my app to request confirmation of the user's desire to quit whenever the home button is pressed. A style sheet would pop up to inform the user of the consequences.

1. Is it possible?

2. Is it bad style?
 

robbieduncan

Moderator emeritus
Jul 24, 2002
25,611
893
Harrogate
1. Not really: your app will be terminated by the OS if it does not shutdown in a timely manner. This may prevent Apple approving your app for the store

2. Very much so. The home button should always take the user back to the home screen. From iPhone Human Interface Guidelines "iPhone applications stop when users open a different application or use a device feature, such as the phone. In particular, note that users don’t tap an application close button or select Quit from a menu. iPhone applications should:

*Be prepared to receive an exit or terminate notification at any time. Therefore, save user data as soon as possible and as often as reasonable.
*Save the current state when stopping, at the finest level of detail possible. For example, if your application displays scrolling data, save the current scroll position."

You should have read an understood that entire document before you started...
 

Troglodyte

macrumors member
Jul 2, 2009
92
0
I don't think you can stop the app from terminating. There is a UIApplication delegate method called applicationWillTerminate - but note, it's not asking you, it's telling you.

Even if you could figure out a way to do this, most likely it would break the interface guidelines and Apple would reject it.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.