I've subclassed UINavigationBar
to have a default, blurred image there.
I'm overriding the drawRect:
method like this:
- (void)drawRect:(CGRect)rect {
self.backgroundColor = [UIColor blueColor];
}
But as you can see, the color doesn't stretch under the status bar:
Why is this? Usually, the storyboard-created bar would stretch behind the status bar.