0

I wanted to customize UIApplication. So I have a subclassed UIApplication. My Application do not have a MainWindow.nib file. So how can I assign my Custom UIApplication to play the role of UIApplication?

RK-
  • 11,865
  • 22
  • 88
  • 153

1 Answers1

1

The Answer provided by Link pointed by petert solved my problem.

In the Main.m file I was able to assign the CustomApplication and CustomAppDelegate this way:

 int retVal = UIApplicationMain(argc, argv, @"CustomApplication", NSStringFromClass([CustomApplicationDelegate class]));
RK-
  • 11,865
  • 22
  • 88
  • 153