Top "Uiapplicationdelegate" questions

UIApplicationDelegate is a part of the UIKit framework used in iOS development

Detect if the app was launched/opened from a push notification

Is it possible to know if the app was launched/opened from a push notification? I guess the launching event …

ios push-notification ios6 apple-push-notifications uiapplicationdelegate
Handling applicationDidBecomeActive - "How can a view controller respond to the app becoming Active?"

I have the UIApplicationDelegate protocol in my main AppDelegate.m class, with the applicationDidBecomeActive method defined. I want to call …

ios iphone ios4 multitasking uiapplicationdelegate
Is there any way to check if iOS app is in background?

I want to check if the app is running in the background. In: locationManagerDidUpdateLocation { if(app is runing in background){ …

ios objective-c uiapplicationdelegate application-lifecycle ios-background-mode
applicationWillEnterForeground vs. applicationDidBecomeActive, applicationWillResignActive vs. applicationDidEnterBackground

Which is the proper delegate to implement when an application is waking up from being in the background and you …

ios objective-c iphone uiapplicationdelegate
Scheduled NSTimer when app is in background?

How do people deal with a scheduled NSTimer when an app is in the background? Let's say I update something …

iphone ios nstimer uiapplicationdelegate
Conditionally start at different places in storyboard from AppDelegate

I have a storyboard set up with working login and main view controller, the latter is the view controller to …

objective-c storyboard uiapplicationdelegate segue
didReceiveRemoteNotification: fetchCompletionHandler: open from icon vs push notification

I'm trying to implement background push notification handling, but I'm having issues with determining whether the user opened the app …

ios ios7 push-notification apple-push-notifications uiapplicationdelegate
When use [[UIApplication sharedApplication] delegate]

I don't know when or why I should use [[UIApplication sharedApplication] delegate] I use delegate when [self.navigationController pushViewController:myView …

iphone delegates uiapplicationdelegate pushviewcontroller
Adding an Activity Indicator Programmatically to a View

Possible Duplicate: Show activity indicator during application launch All, Inside my app delegate, I created an animated splash view that …

ios uiactivityindicatorview uiapplicationdelegate