0

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?

dandan78
  • 13,328
  • 13
  • 64
  • 78
paragdulam
  • 55
  • 4

1 Answers1

1

Bring Users Back to your Application after they End the Call

See this link

Rahul Patel
  • 5,858
  • 6
  • 46
  • 72
Zoeb S
  • 695
  • 1
  • 7
  • 21