自定义iOS状态栏

移动开发 iOS
为了让自定义的状态栏可以让用户看到,设置了它的windowlevel,在ios中,windowlevel属性决定了UIWindow的显示层次,默认的windowlevel为UIWindowLevelNormal,即0.0 。为了能覆盖默认的状态栏,将windowlevel设置高点。其他代码基本上都不解释什么,如果要特殊效果,可以自己添加。

如果需要在状态栏显示自定义的消息时,就需要自定义状态栏。

代码如下:

XYCustomStatusBar.h

#import <UIKit/UIKit.h>   
@interface XYCustomStatusBar : UIWindow{   
     UILabel *_messageLabel;   
 }   
 - (void)showStatusMessage:(NSString *)message;   
- (void)hide;   
@end  
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.

XYCustomStatusBar.m

#import "XYCustomStatusBar.h"   
 @implementation XYCustomStatusBar       
 - (void)dealloc{   
    [super dealloc];   
    [_messageLabel release], _messageLabel = nil;   
 }       
 - (id)init{   
     self = [super init];   
     if (self) {   
         self.frame = [UIApplication sharedApplication].statusBarFrame;   
         self.backgroundColor = [UIColor blackColor];   
         self.windowLevel = UIWindowLevelStatusBar + 1.0f;   
         _messageLabel = [[UILabel alloc] initWithFrame:self.bounds];   
         [_messageLabel setTextColor:[UIColor whiteColor]];   
         [_messageLabel setTextAlignment:NSTextAlignmentRight];   
         [_messageLabel setBackgroundColor:[UIColor clearColor]];   
         [self addSubview:_messageLabel];   
     }   
     return self;   
 }   
 - (void)showStatusMessage:(NSString *)message{   
     self.hidden = NO;   
     self.alpha = 1.0f;   
     _messageLabel.text = @"";   
     CGSize totalSize = self.frame.size;   
     self.frame = (CGRect){ self.frame.origin, 0, totalSize.height };   
     [UIView animateWithDuration:0.5 animations:^{   
         self.frame = (CGRect){self.frame.origin, totalSize };   
     } completion:^(BOOL finished){   
         _messageLabel.text = message;   
     }];   
 }   
 - (void)hide{   
     self.alpha = 1.0f;           
     [UIView animateWithDuration:0.5f animations:^{   
         self.alpha = 0.0f;   
     } completion:^(BOOL finished){   
         _messageLabel.text = @"";   
         self.hidden = YES;   
     }];   
 }   
 @end  
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.

为了让自定义的状态栏可以让用户看到,设置了它的windowlevel,在ios中,windowlevel属性决定了UIWindow的显示层次,默认的windowlevel为UIWindowLevelNormal,即0.0 。为了能覆盖默认的状态栏,将windowlevel设置高点。其他代码基本上都不解释什么,如果要特殊效果,可以自己添加。

责任编辑:闫佳明 来源: oschina
相关推荐

2012-12-24 14:42:48

iOS自定义状态栏

2014-06-06 14:03:13

iOS状态栏提示控件原理

2013-11-20 15:08:32

iOS开发状态栏

2021-08-24 15:25:59

鸿蒙HarmonyOS应用

2013-06-27 11:10:01

iOS开发自定义UISlider

2017-02-17 11:00:57

状态栏Android

2013-05-30 15:53:17

iOS开发iOS SDKPopver

2021-01-20 08:58:39

iOS 14桌面图标快捷指令

2011-08-02 11:17:13

iOS开发 View

2015-02-12 15:33:43

微信SDK

2017-10-25 14:07:54

APPiOSxcode

2012-06-01 11:02:33

2022-07-15 16:39:46

ETS导航栏组件

2015-02-12 14:49:36

CGToast状态栏提示Status

2016-11-29 11:20:08

Android

2015-02-12 15:38:26

微信SDK

2011-05-04 10:40:02

网页加载进度标题栏lephone

2015-01-15 16:45:05

iOS源码自定义画图

2016-12-26 15:25:59

Android自定义View

2018-07-17 14:47:55

Windows 10Windows任务栏
点赞
收藏

51CTO技术栈公众号