How to override exit action (iphone dev.)? - iphone

I need to write some information to file before exiting application. How can I do that?

Supposing your app supports multitasking (and you're on iOS 4 or above):
Override the applicationDidEnterBackground method in your app delegate, and do like the follwing:
- (void)applicationDidEnterBackground:(UIApplication *)application {
bgTask = [ [UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:^{
[app endBackgroundTask:bgTask];
bgTask = UIBackgroundTaskInvalid;
}];
//do whatever writing you like
if (bgTask != UIBackgroundTaskInvalid) {
[[UIApplication sharedApplication] endBackgroundTask:bgTask];
bgTask = UIBackgroundTaskInvalid;
}
}

Implement the following method in your App Delegate:
- (void)applicationWillTerminate:(UIApplication *)application

Start with Preserving the State of Your Application’s User Interface on Apple's Developer site. Read about the methods applicationDidEnterBackground: and it's related methods like applicationWillResignActive, etc. One thing to keep in mind when implementing any of these application delegate methods is that you don't have a lot of time to do stuff.
One way to avoid the race condition of trying to write out some data while the app is being backgrounded or exiting is to write it out when it changes during the normal course of your app running. Then, it's always correct "on disk."

Related

Sending Local notifications when the app is in background mode not working

I want to be able to send multiple local notifications throughout the day, this must also work in background mode and it must work on a timer, so every 20 minutes to be exact. The problem I am having is that once in background mode they are not firing because the function used to set the timer will not run.
I have then thought about running the timer in the applicationDidEnterBackground but this would clash with the original timer set in the function.
Is there anyway for this to work basically? Any wisdom would be very grateful.
Try looking this link and perfrom your task in background
- (void)applicationDidEnterBackground:(UIApplication *)application
{
bgTask = [application beginBackgroundTaskWithName:#"MyTask" expirationHandler:^{
// Clean up any unfinished task business by marking where you
// stopped or ending the task outright.
[application endBackgroundTask:bgTask];
bgTask = UIBackgroundTaskInvalid;
}];
// Start the long-running task and return immediately.
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
// Do the work associated with the task, preferably in chunks.
[application endBackgroundTask:bgTask];
bgTask = UIBackgroundTaskInvalid;
});
}

how can I use UIWebview as always working on background

I would like to set UIWebview always running on background.
UIWebview is not working when iPhone entered 'applicationDidEnterBackground'.
so I want UIWebview to run always on backgroud.
Is it possible?
Every app can continue to execute in the background for roughly 10 minutes before it terminates. Only certain apps can continue to execute in the background, such as audio/gps/bluetooth etc related apps. You can find out more here.
The following code sample is from the app doc and can help you get started -
- (void)applicationDidEnterBackground:(UIApplication *)application
{
bgTask = [application beginBackgroundTaskWithExpirationHandler:^{
// Clean up any unfinished task business by marking where you.
// stopped or ending the task outright.
[application endBackgroundTask:bgTask];
bgTask = UIBackgroundTaskInvalid;
}];
// Start the long-running task and return immediately.
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
// Do the work associated with the task, preferably in chunks.
[application endBackgroundTask:bgTask];
bgTask = UIBackgroundTaskInvalid;
});
}

How to make an App working in an background?

I am developing an application, in which I am fetching some photos from the XML link using NSXMLParser, so it takes some time to load images into view, while loading if I click on the home button in iPhone (device) and open the application again, the App crashes. I didn't know how to make my app to be able to run also in background state. I googled and found, "App States and Multitasking" but i can't able to make it in my application. Any solutions or links will be appreciated.
Try This
UIBackgroundTaskIdentifier backgroundTask = 0;
UIApplication *application= [UIApplication sharedApplication];
backgroundTask = [application beginBackgroundTaskWithExpirationHandler:^{
[application endBackgroundTask:backgroundTask];
}];
use this code in your application at initial method
- (void)applicationDidEnterBackground:(UIApplication *)application
{
//call your upload method
}

Application delegates are not calling while application entered into background

I am implementing an iPhone application.I am downloading data from server by using asynchronous request in the application.If, I Press the home button, My application delegate is not calling directly.After completion of data downloading from server, application delegate methods are calling.So, How can i get the immediate Delegate call in my application.
Any help can be appreciate.
Which delegate methods are you implementing? Can you post what you've tried (code-wise) here? Note that once your application has been moved to the background, you can only run short-term tasks to preserve battery life.
This example is provided by Apple:
- (void)applicationDidEnterBackground:(UIApplication *)application
{
UIApplication* app = [UIApplication sharedApplication];
bgTask = [app beginBackgroundTaskWithExpirationHandler:^{
// Clean up any unfinished task business by marking where you.
// stopped or ending the task outright.
[app endBackgroundTask:bgTask];
bgTask = UIBackgroundTaskInvalid;
}];
// Start the long-running task and return immediately.
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
// Do the work associated with the task, preferably in chunks.
[app endBackgroundTask:bgTask];
bgTask = UIBackgroundTaskInvalid;
});
}
If you want to perform longer running tasks, you require special permissions, and even then can only perform a certain subset of actions. They are discussed here:
iOS App Programming Guide: App States and Multitasking

How to know if current device can have background mode

I am doing some tasks after having entered in background mode. I want to do these tasks only if I am in background mode so I did :
if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground)
But applicationState is only available in iOS 4.0 and later...
I wonder how this piece of code will work on iOS 3 for example.
How can I know if the device has iOS 4 ?
How can I avoid crash and exceptions for iOS < 4 ?
Thansk for your help
Kheraud
You can check whether the current iOS supports returning the current application state by using -respondsToSelector:
if ([[UIApplication sharedApplication] respondsToSelector:#selector(applicationState)] ){
UIApplicationState state = [[UIApplication sharedApplication] applicationState];
}
You can determine whether multitasking support is available (even devices running iOS 4 or later may not have the hardware to support multitasking) by specifically checking for background support:
UIDevice* device = [UIDevice currentDevice];
BOOL backgroundSupported = NO;
if ([device respondsToSelector:#selector(isMultitaskingSupported)])
backgroundSupported = device.multitaskingSupported;
You can retrieve the iOS version by using the following code (although you should not really rely on the following code to infer background support):
float osVersion=[[[UIDevice currentDevice] systemVersion] floatValue];
Finally, if you want to perform some tasks just after having entered background mode, you'll want to take advantage of the following event:
- (void)applicationDidEnterBackground:(UIApplication *)application
.. but note that your time will be very limited. You will have approximately five seconds to do whatever you want to do. In case you need more, you can try asking iOS for additional time:
- (void)applicationDidEnterBackground:(UIApplication *)application
{
UIApplication* app = [UIApplication sharedApplication];
bgTask = [app beginBackgroundTaskWithExpirationHandler:^{
[app endBackgroundTask:bgTask];
bgTask = UIBackgroundTaskInvalid;
}];
// Start the long-running task and return immediately.
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
// Do the work associated with the task.
[app endBackgroundTask:bgTask];
bgTask = UIBackgroundTaskInvalid;
});
}
Note that in this case, you might be granted more time by iOS (or not), but it's still a finite-length time.
Apple's Executing Code in the Background is a worth read.
I discovered this link very usefull to understand how to handle both 3.1 and >4.0 OS versions :
Developing iPhone Apps with iOS4 SDK, Deploying to 3.x Devices : Base SDK and iPhone OS Deployment Target