I have a mainViewController which is the "home" of my app. this mainViewController has a status bar which it loads from a separate nib. It does work fine except for the fact that the background of the subView is not displayed.
This is my loading code:
- (void)viewDidLoad {
[super viewDidLoad];
// set title and tab representation
self.navigationItem.title = @"News";
// load status bar (level display etc.)
[[NSBundle mainBundle] loadNibNamed:@"MainStatusBar" owner:self options:nil];
[self.view addSubview:self.statusBar];
[self refreshLevelDisplays]; ...
It looks like that:
