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-
  • 12,099
  • 23
  • 89
  • 155

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-
  • 12,099
  • 23
  • 89
  • 155