tags:

views:

30

answers:

2

Hi , i have problem with showing an UIView on app delegate ... there is no place on interface builder to connect IBOutlet with app delegate .

 [self.view addSubview:UIVIEW];   //doesn't work 
+1  A: 

your app delegate should have a UIWindow (almost always called window). Add your view as a subview to it (note: dont forget to makeKeyAndVisible your window!)

Check out any of the basic documentation examples for how to use a UIWindow and how to connect it in IB.

Jesse Naugher
+1  A: 

The chances are you don't want to display anything in the app delegate. Typically when you start a new project there will be a MainViewController which is where you want to put new views and such into.

If you don't have that then you'll want to add it to the window property of the app delegate.

Matt Williamson