vote up 2 vote down star

I have succesfully created a view hierarchy programmatically. I now want to replicate this hierarchy using Interface Builder (IB) instead.

In IB I have nested a UIView within the main Window. Do I now nolonger need the following in method applicationDidFinishLaunching:application:

[window addSubview:controller.view];
[window makeKeyAndVisible];

Notes: controller is a member of my UIApplicationDelegate subclass.

Thanks, Doug

flag

2 Answers

vote up 0 vote down check

No, you will not need to add it programmatically. If the view appears within the window in IB, it is automatically being added as a subview when the nib loads. In fact, you shouldn't even need to call [window makeKeyAndVisible] if your window is set up properly in IB.

link|flag
Thanks eJames. – dugla Aug 15 at 11:10
You are welcome :) – eJames Aug 16 at 2:48
vote up 0 vote down

No, you shouldn't need addSubView here. Make sure that the correct nib file is loaded, that is the view associated with the Window for a window based app.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.