I have my ipad code created programmatically not using nib.I converted my ipad app to universal app as follows:
Choose the project target(the blue one on the sidebar). Summary -> iOS
Application Target -> set Devices to Universal.
Now I want to launch different app delegate for iphone and different app delegate for ipad.There is already one app delegate for ipad, now I want to create different app delegate for iphone so that in main.m I can launch different app delegate based on device(ipad & iphone).So my question is, can I create different app delegate, if yes then how?
in the projects
main.myou could do something like
But IMO you should not do it.
Instead doi it as apple does it to, in app delegate load different view controllers or different XIBs.