Do you mean an additional view, not a view of the main controller? In this case, you can declare a property for the view and manually load the NIB:
@interface Controller {}
@property(retain) IBOutlet UIView *extraView;
@end
…
- (void) viewDidLoad
{
[[NSBundle mainBundle] loadNibNamed:@"extras" owner:self options:nil];
NSAssert(extraView != nil, @"The extra view failed to load.");
[[self view] addSubview:extraView];
}
, Controller , extraView. , , NIB ; .