Probably a novice question: I’m working with some legacy code that has an implementation for
- (void)applicationWillEnterBackground:(UIApplication *)application
There’s no explicit definition of this method in the headers, so I assumed it’s part of the adopted protocol (UIApplicationDelegate) however it’s not included in apple’s documentation.
Is this method called as a part of the app life-cycle? (Afterall the method’s name closely resembles applicationDidEnterBackground which is listed as a UIApplicationDelegate method)
If it is part of the life-cycle when is it called?
The string
applicationWillEnterBackgrounddoesn’t occur in theUIKitdynamic library. I’m pretty sure the system never sends that message.For comparison, the library does contain the string
applicationDidEnterBackground: