i have 3 xcode projects and i want to integrate them into one project. Two of those projects are view based application, hence the application delegate has inherited NSObject and UIApplicationDelegate. but the third project is not a view based application and so the app delegate has inherited UIApplication.

So now i am in a fix. how should i integrate the three of them. coz if i try to make my third class inherit NSObject then there are many errors. and even if i deal with those errors, the app crashes during run time giving the exception :

Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'There can only be one UIApplication instance.'

so what do i do now??? any help would be greatly appreciated

link|improve this question

45% accept rate
1  
It makes absolutely no sense for an application delegate to inherit from UIApplication. – Ole Begemann Dec 10 '10 at 11:55
the uiapplication has been inherited because properties like networkActivityIndicatorVisible, statusBarStyle etc have to be used application delegate itself. And there are no xib files in this project. everything has been done programatically. even the main window is invoked through coding. So plz somebody help me. its kinda urgent. – Jayshree Dec 13 '10 at 13:48
feedback

1 Answer

You shouldn't be inheriting from UIApplicationDelegate, but instead implementing the UIApplicationDelegate protocol.

Example:

@interface SampleAppDelegate : NSObject <UIApplicationDelegate> {
    UIWindow *window;
    MainViewController *mainViewController;
}
link|improve this answer
yes i have implemented <UIApplicationDelegate> not inherited. I did not explain properly, my bad. but the problem still persists. i somehow have to make my third app inherit nsobject. – Jayshree Dec 13 '10 at 4:59
You'll have to post some code if you want us to be able to help you more. – Eric Reid Dec 14 '10 at 15:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.