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
UIApplication. – Ole Begemann Dec 10 '10 at 11:55