UIApplicationDelegate is a part of the UIKit framework used in iOS development
UIApplicationDelegate Protocol is available in /System/Library/Frameworks/UIKit.framework since iOS 2.0.
It declares methods that are implemented by the delegate of UIApplication object. It gives information on key events during application execution (finish launching, terminated, low memory, ...) (from iOS developer guide)
initial help
sample code
- Could be found also in the official documentation