Is it possible to add a UIView on the staus bar of size (320 x 20)? I don't want to hide the status bar, I only want to add it on top of the status bar.

link|improve this question

80% accept rate
1  
Just a comment, in case you are interested in publishing to Apple's app store -- the Reeder app got rejected because of this feature. – Irene Jan 20 at 8:42
feedback

3 Answers

up vote 45 down vote accepted

You can easily accomplish this by creating your own window above the existing status bar.

Just create a simple subclass of UIWindow with the following override of initWithFrame:

@interface ACStatusBarOverlayWindow : UIWindow {
}
@end

@implementation ACStatusBarOverlayWindow
- (id)initWithFrame:(CGRect)frame {
    if ((self = [super initWithFrame:frame])) {
        // Place the window on the correct level and position
        self.windowLevel = UIWindowLevelStatusBar+1.0f;
        self.frame = [[UIApplication sharedApplication] statusBarFrame];

        // Create an image view with an image to make it look like a status bar.
        UIImageView *backgroundImageView = [[UIImageView alloc] initWithFrame:self.frame];
        backgroundImageView.image = [[UIImage imageNamed:@"statusBarBackgroundGrey.png"] stretchableImageWithLeftCapWidth:2.0f topCapHeight:0.0f];
        [self addSubview:backgroundImageView];
        [backgroundImageView release];

        // TODO: Insert subviews (labels, imageViews, etc...)
    }
}
@end

You can now, for example in a view controller in your application, create an instance of your new class and make it visible.

overlayWindow = [[ACStatusBarOverlayWindow alloc] initWithFrame:CGRectZero];
overlayWindow.hidden = NO;

Be aware of messing with the window key status by using - (void)makeKeyAndVisible or similar. If you make your main window (the UIWindow in your Application Delegate) loose key status, you will encounter problems with scrolling scrollviews to top when tapping the status bar etc.

Edit: Here's an image you can use as a background:

Also updated the code with a stretchable UIImage

link|improve this answer
1  
Note that placing an overlay over the regular status bar (the grey one) and the opaque black is simple. If your application has a translucent bar, you will need to hide it and place your own view in it's place (since placing a translucent bar on top of the original will only make a mess ;)) – alleus May 14 '10 at 12:48
Absolutely brilliant. – Daniel Amitay May 14 '10 at 18:58
Is that code missing a "return self;" at the end of the function there? – Ben Holland May 16 at 17:14
feedback

I wrote a static library mimicing Reeders status bar overlay, you can find it here: https://github.com/myell0w/MTStatusBarOverlay

MTStatusBarOverlay MTStatusBarOverlay

It currently supports iPhone and iPad, default and opaque black status bar styles, rotation, 3 different anymation modes, history-tracking and lots of more goodies!

Feel free to use it or send me a Pull Request to enhance it!

link|improve this answer
Brilliant, thank you! – Griffo Feb 18 '11 at 13:49
How do i use this if i dont have a status bar in my application. – Praveen S Jun 29 '11 at 10:45
1  
Bad news guys, Apple started rejected apps using MTStatusBarOverlay or similar solutions that "displays a custom status bar overlay on top of the native status bar". Apparently it violates HIG :( – Błażej Apr 2 at 11:37
1  
It's true, unfortunately, some apps using MTStatusBarOverlay get rejected, but other don't. I regularly get messages from people using MTStatusBarOverlay in their apps without any (review-)probles, so it might still be worth a try for you :-) – myell0w May 14 at 20:18
feedback

Just to dismiss the "You cannot do this comments"...

I don't know how but I know it is doable. The Feed reader app called Reeder does that.

As you can see from the screenshot, Reeder puts a small dot on the top right of the screen. When you tap it. The bar will fill the whole statusbar until you tap it again to make it small.

A small icon on the top right of the screen alt text

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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