0

iPhone 6 and 6 Plus comes with a Reachability feature to pull down the screen. Is there an API to notify an app when the user double-taps the home button?

ohho
  • 50,879
  • 75
  • 256
  • 383

1 Answers1

0

when user double tap home button only below method will be called from AppDelegate.

1) Double tap home

-(void)applicationWillResignActive:(UIApplication *)application

when tap on app below method will be called

- (void)applicationDidBecomeActive:(UIApplication *)application

2) single tap below method will be called

1)- (void)applicationWillResignActive:(UIApplication *)application
2)- (void)applicationDidEnterBackground:(UIApplication *)application

Maybe this will help you.

ChintaN -Maddy- Ramani
  • 5,156
  • 1
  • 27
  • 48