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