Custom status bar for IOS development

Source: Internet
Author: User

Method 1:

-(Void) setRefreshWindow {CGRect frame = CGRectMake (0.0, 0.0, 320.0, 20.0); statusbarWindow = [[UIWindow alloc] initWithFrame: frame]; [statusbarWindow setBackgroundColor: [UIColor clearColor]; [statusbarWindow setWindowLevel: UIWindowLevelStatusBar + 1.0f]; // Add custom sub-view UIImageView * customView = [[UIImageView alloc] initWithFrame: CGRectMake (100, 0,120, 18)]; customView. image = [UIImage imageNamed: @ ".png"]; // UILabel * label = [[UILabel alloc] initWithFrame: CGRectMake (100, 0,100, 20)]; //// label. backgroundColor = [UIColor clearColor]; // label. text = @ "Data refreshing"; // [customView addSubview: label]; [statusbarWindow addSubview: customView]; [statusbarWindow makeKeyAndVisible];}


Method 2:

If you want to display custom messages in the status bar, you need to customize the status bar.

The Code is as follows:

XYCustomStatusBar. h

01 #import
02
03 @interface XYCustomStatusBar : UIWindow{
04
05 UILabel *_messageLabel;
06 }
07
08 - (void)showStatusMessage:(NSString *)message;
09
10 - (void)hide;
11
12 @end

XYCustomStatusBar. m

01 #import "XYCustomStatusBar.h"
02
03 @implementation XYCustomStatusBar
04
05 - (void)dealloc{
06 [super dealloc];
07 [_messageLabel release], _messageLabel = nil;
08 }
09
10 - (id)init{
11 self = [super init];
12 if (self) {
13 self.frame = [UIApplication sharedApplication].statusBarFrame;
14 self.backgroundColor = [UIColor blackColor];
15 self.windowLevel = UIWindowLevelStatusBar + 1.0f;
16
17 _messageLabel = [[UILabel alloc] initWithFrame:self.bounds];
18 [_messageLabel setTextColor:[UIColor whiteColor]];
19 [_messageLabel setTextAlignment:NSTextAlignmentRight];
20 [_messageLabel setBackgroundColor:[UIColor clearColor]];
21 [self addSubview:_messageLabel];
22 }
23
24 return self;
25 }
26
27 - (void)showStatusMessage:(NSString *)message{
28 self.hidden = NO;
29 self.alpha = 1.0f;
30 _messageLabel.text = @"";
31
32 CGSize totalSize = self.frame.size;
33 self.frame = (CGRect){ self.frame.origin, 0, totalSize.height };
34
35 [UIView animateWithDuration:0.5 animations:^{
36 self.frame = (CGRect){self.frame.origin, totalSize };
37 } completion:^(BOOL finished){
38 _messageLabel.text = message;
39 }];
40
41 }
42
43
44 - (void)hide{
45 self.alpha = 1.0f;
46
47 [UIView animateWithDuration:0.5f animations:^{
48 self.alpha = 0.0f;
49 } completion:^(BOOL finished){
50 _messageLabel.text = @"";
51 self.hidden = YES;
52 }];
53 }
54
55 @end

In order to make the custom status bar visible to the user and set its windowlevel, in ios, The windowlevel attribute determines the display level of the UIWindow. The default windowlevel is UIWindowLevelNormal, that is, 0.0. To overwrite the default status bar, set windowlevel to a high point. Other code basically does not explain anything. If you want special effects, you can add them by yourself.


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.