Controller object UIApplication is used without subclassing to manage the application event loop. It coordinates other high-level app behaviors.
Some of the behaviours of UIApplications:
-It works along with the app delegate object which contains app-level logic.
-Control the app’s response to changes in interface orientation.
-Register for remote notifications.
-Extend the execution of the app so that it can finish a task in the background.
-Schedule and cancel local notifications.
-Coordinate the reception of remote-control events.
(A major role of a UIApplication object is to handle the initial routing of incoming user events. It also dispatches action messages forwarded to it by control objects (UIControl) to the appropriate target objects.)
Markdown for AI
A clean, structured version of this page for AI assistants and LLMs.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
Some of the behaviours of UIApplications:
- It works along with the app delegate object which contains app-level logic.
- Control the app’s response to changes in interface orientation.
- Register for remote notifications.
- Extend the execution of the app so that it can finish a task in the background.
- Schedule and cancel local notifications.
- Coordinate the reception of remote-control events.
(A major role of a UIApplication object is to handle the initial routing of incoming user events. It also dispatches action messages forwarded to it by control objects (UIControl) to the appropriate target objects.)