Let's say I want to call a method after my phone call was finished in my application. Is it possible to do that? I know about using UIApplicationDelegate
Methods where I can use the methods:
- (void)applicationWillEnterForeground:(UIApplication *)application
This might not be the case since its not necessary that the app will call this method specifically after finishing the phone call. Can be other interruptions.
- (void)applicationWillResignActive:(UIApplication *)application
- (void)applicationDidEnterBackground:(UIApplication *)application
This might not be the case since its not necessary that the app will call this method specifically when we get a phone call. Can be other interruptions.
Are there any notifications that I am missing?