Tagged Questions
UIApplicationDelegate is a part of the UIKit framework used in iOs development
21
votes
4answers
12k views
ApplicationWillTerminate in iOS 4.0
The applicationWillTerminate delegate method is not getting called in iOS 4.0
When I hit the Home button I am seeing the applicationWillResignActive and applicationDidEnterBackground delegate methods ...
18
votes
1answer
7k views
Handling applicationDidBecomeActive
I have the UIApplicationDelegate protocol in my main AppDelegate.m class, with the applicationDidBecomeActive method defined.
I want to call a method when the application returns from the ...
16
votes
2answers
376 views
How to change App Delegate type in IB?
I want to change the App Delegate Type in MainWindow.xib through IB, beacause I have to modify the application name of the existing project with different name. I have changed the app delegate .h/.m ...
15
votes
1answer
177 views
difference between appdelegate and delegate in viewcontroller
I want to integrate one sample code with (for example SampleCode project) my iPhone application .In the sample code in firstViewController is added in MainWindow.xib and linked to viewController ...
6
votes
1answer
1k views
Counterpart to -application:openURL:sourceApplication:annotation:
iOS SDK 4.2 includes a new UIApplicationDelegate method called application:openURL:sourceApplication:annotation:. It is a replacement for application:handleOpenURL: and offers more information about ...
5
votes
6answers
137 views
importing AppDelegate
Often times I initialize my model class variables in my AppDelegate so they can be used by different ViewControllers without passing their instance across class files. However, every time I import ...
5
votes
2answers
2k views
Using applicationwillenterforeground for a passcode screen
Before iOS4, my app's initial view controller would check a passcode on/off settings variable in viewWillAppear and if set on, present a modal passcode screen that would stay there until the correct ...
4
votes
1answer
602 views
clickedButtonAtIndex in appdelegate is not called
I am calling UIAlert with 2 buttons "Cancel" and "OK" in MyapplicationAppDelegate.m file , the alert is called but on tap of "Cancel" or "OK" button
-(void)alertView:(UIAlertView *)alertView ...
4
votes
2answers
240 views
Objective C: When to use methods in App Delegate and when to use methods in View Controller
I am a little confused on the following methods in both my View Controller and App delegate classes
Method in App delegate:
- (BOOL)application:(UIApplication *)application ...
4
votes
2answers
614 views
isKindOfClass and NSStringFromClass disagree about UIApplicationDelegate
I was playing with a simple OCUnit test for an iPhone app, and just wanted to assert that the app delegate was an instance of the class that I expected it to be. I didn't expect this test to be very ...
3
votes
2answers
386 views
How do you dismiss a UIActionSheet from the App Delegate?
I'm trying to dismiss a UIActionSheet from the app delegate so that it doesn't show again when you return from background. I've tried to dismiss the action sheet from the viewDidUnload or ...
3
votes
1answer
289 views
Alter view before applicationWillEnterForeground
I want to lock users out of my app after a period of being in the background. I'm catching this in the the AppDelegate's applicationWillEnterForeground (and comparing to time stored in ...
3
votes
1answer
166 views
Is the Application Delegate the right place to load a login view?
I'm fairly new to Objective-C and trying to figure out best practices and the ways of doing things.
The app that I'm working on requires that the user login. Once logged in the login information is ...
3
votes
4answers
657 views
iPhone application crash on launch
We are receiving a crash log from iTunes connect that is a little strange.
We were preivously having problems with our app taking to long to return from ApplicationDidFinishLaunching. This was ...
3
votes
1answer
1k views
keyWindow] is nil?
I want to convert a CGPoint from my UIView to UIWindow coordinates and have realized that UIApplication keyWindow is always nil, how come is this?
I have tried the convertPoint:toView: method form ...
3
votes
2answers
2k views
In iOS4 applicationWillEnterForeground may get called before applicationDidEnterBackground and it makes problem
In iOS 4, if I close & re-open my app rapidly then (after applicationWillResignActive invocation) there is a chance for applicationWillEnterForeground to be get called well before the ...
3
votes
2answers
363 views
Pausing Game when someone calls/SMS you
I want to implement this function on my apps but i cant seem to figure out how to use this line of codes.
- (void)applicationWillResignActive:(UIApplication *)application {
//our app is going to ...
2
votes
0answers
17 views
Using NSOperationQueue to perform iOS application initialization
Is it OK to use NSOperationQueue addOperationWithBlock to delay initialization code, so the app was not killed by an iOS watchdog?
As we know iOS kills the app if it spends too much time in ...
2
votes
2answers
96 views
Objective-C Alternative to using ApplicationDelegate or singleton to pass data
I'm working on an exiting iOS app (called Mazin in the App store, if anyone is interested) and I'm trying to rework the code to avoid using the Application Delegate or a singleton for sharing ...
2
votes
3answers
60 views
What happens when main is called in an iPhone or iPad app?
I am currently trying to debug a problem with an iPhone app. When I run it in Xcode main is called, but not - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary ...
2
votes
1answer
53 views
Read delegate from view controller in tab bar application
I found several posts online stating that I could access my application delegate object from any view controller through the following call:
[[UIApplication sharedApplicaton] delegate];
(For ...
2
votes
1answer
68 views
how to determine in applicationDidBecomeActive whether it is the initial iPhone app launch?
how to determine in how to determine in UIApplicationDidBecomeActiveNotification whether it is the initial app launch?whether it is the initial app launch?
that is the initial start up of the ...
2
votes
2answers
231 views
What causes apps to crash on resume after a long time in background?
I'm finding that after my app has been in the background for a while, (half hour + maybe) it crashes immediately on resume.
Crash log reveals that it is EXC_BAD_ACCESS, but I'm at loss for how to ...
2
votes
5answers
361 views
window addSubview release problem
I was wondering something about the app delegate of my app.
Why can't I release like this :
-(BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary ...
2
votes
1answer
189 views
How to detect what triggered applicationWillResignActive?
I have a Video Chat application that I want to disconnect from a call when the device is locked, but stay connected when an SMS, calendar, low battery or any other type of notification is received. ...
2
votes
1answer
109 views
Why use a ViewController to manage ViewControllers and not just the ApplicationDelegate
If I have a bunch of ViewControllers that are only ever going to deal with a single view, or even if my ViewController is going to deal with multiple views, why should I use another ViewControllers to ...
2
votes
2answers
136 views
How do I update the screen before applicationDidBecomeActive?
I need to hide something on the screen when the user has activates the application by switching it to the foreground.
I have tried inserting my code within applicationDidBecomeActive or ...
2
votes
4answers
308 views
iPhone notification the first time app is launched
I'm wanting the user to accept an agreement before the application is launched. So in the appDelegate.m I have the following:
- (BOOL)application:(UIApplication *)application ...
2
votes
2answers
262 views
how to use application delegate method in iphone
i have try the label value pass one view to another view .i have use the table view and table view put a label . code......
such as
(UITableViewCell *)tableView:(UITableView *)tableView ...
2
votes
1answer
127 views
Is it possible to lose data if a sqlite DB is not closed?
Is it possible to lose data if a SQLite DB is not closed properly in iOS/iPhone?
I was thinking of closing the DB in applicationWillTerminate, but want to make sure this doesn't have any nasty ...
2
votes
3answers
565 views
Is it possible to subclass UiApplicationDelegate protocol?
To be honest I don't know how to call it, so I'll try to describe it.
UIApplicationDelegate protocol has "application:handleOpenURL:" method. And if I implement this method in my ApplicationDelegate ...
2
votes
1answer
116 views
Can Objects Call the Main Application?
Please bear with me, this is probably a very simple problem for an expert but I'm new to the language.
I'm trying to create an application that dynamically generates and releases a series of views, ...
2
votes
2answers
1k views
Hiding iPhone Status Bar pulls my tableViews up by 20px
When doing an asynchronous HTTP request, I hide the iPhone status bar and animate in my own custom UIViewController to show upload status. So instead of seeing signal strength, carrier, time and ...
2
votes
1answer
287 views
How much should the AppDelegate do?
I'm designing quite a large App and on startup it will create sessions with a few different servers. As they are creating a session which is used across all parts of the app its something I thought ...
2
votes
2answers
1k views
View Controller's viewDidLoad method finishing before applicationDidFinishLaunching
I'm creating a fairly complex iPhone app using Core Data. Up until now, things have been working fine. As the app has been getting more complex, however, a new problem has come up: the first view ...
2
votes
2answers
579 views
iphone global settings - best way to implement it?
I'd like to have some settings that I can access from anywhere in my app. Is there a best way to implement this? Right now I'm just sticking properties in my app delegate, then access them with:
...
2
votes
1answer
176 views
Is there any advantage to deallocating objects owned by the UIApplicationDelegate?
Best practices aside, if I create an object that is owned by my UIApplicationDelegate class, and stays around the entire time the application runs, is there any real advantage to adding an [object ...
2
votes
1answer
202 views
Difference Between Application Delegates
What is the difference between:
[[UIApplication sharedApplication] delegate]
and
UIApplicationDelegate
1
vote
2answers
127 views
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 in my app every hour.
updateTimer = [NSTimer scheduledTimerWithTimeInterval:60.0*60.0
...
1
vote
1answer
55 views
Application delegates are not calling while application entered into background
I am implementing an iPhone application.I am downloading data from server by using asynchronous request in the application.If, I Press the home button, My application delegate is not calling ...
1
vote
2answers
2k views
Applications are expected to have a root view controller at the end of application launch wait_fences: failed to receive reply: 10004003
when i launch my application in iphone emulator, it goes without any problem. If i launch on device it will crash as still as i open it. But when i launch emulator it says that problem:
Applications ...
1
vote
2answers
46 views
does something need to hold a reference to a singleton objective-c object in order to preserve it through the life of an IOS app?
does something need to hold a reference to a singleton objective-c object in order to preserve it through the life of an IOS app?
For example if if AppDelegate you created/instantiated a singleton ...
1
vote
2answers
141 views
Objective-C – Message a view controller from application delegate
I want to download some data in the application delegate in - application:didFinishLaunchingWithOptions:
After I have downloaded some data I want to set this data to an NSArray property in a view ...
1
vote
2answers
124 views
Where is your Application Delegate set and who initializes its window and viewController properties?
I have a very newbie question about IOS apps... If I create a new View Based Application called TestForStackOverflow, Xcode automatically creates code like this for the ...
1
vote
0answers
244 views
application:openURL:sourceApplication:annotation return NO versus YES
I am registering an application to handle being opened via URL and am confused with
application:openURL:sourceApplication:annotation
According to the documentation you should return YES if you can ...
1
vote
2answers
133 views
When should I release [[UIApplication sharedApplication] delegate] object?
I'm using the following code many times in my app (especially to manage a NavigationController):
MyAppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
When should I release it ...
1
vote
1answer
169 views
Cannot access appdelegate instance variable from related View Controller
My app name is PropertiesSearch so the project contains the following files:
PropertiesSearchAppDelegate.h
PropertiesSearchAppDelegate.m
PropertiesSearchViewController.h
...
1
vote
1answer
53 views
Can't assign value to a BOOL field in a Singleton
I have this singleton:
UserData.h
@interface UserData : NSObject {
User *user;
}
+ (UserData *)sharedUserData;
@property (nonatomic, retain) User *user;
UserData.m
@implementation UserData
...
1
vote
1answer
58 views
Short-term UI freeze on applicationWillEnterForeground
I have an app which requires input when resuming from inactive state (a security view). When resuming from inactive after some time, the UI will freeze for 1-5 seconds before entry can take place on ...
1
vote
4answers
54 views
NSUserDefaults Question (how do i open a different viewController when needed while starting the app)
I'm trying to start a different ViewController when a BOOL in NSUserDefaults isn't set..
When the "RegistreerView" is loaded the screen stays white? What do i do wrong? How can i start a different ...