IOS状态栏自定义提示后消失

1.自定义状态栏.h文件
////  DGCustomStatusBar.h//  状态栏提示之后消失////  Created by naton on 15/11/11.//  Copyright © 2015年 zqk. All rights reserved.//
#import@interface DGCustomStatusBar : UIWindow
@property (nonatomic, strong)UIColor *statusColor;
@property (nonatomic, strong)UIColor *textColor;
@property (nonatomic, assign)NSTextAlignment textAlignment;
@property (nonatomic, strong)UIFont *textFont;
- (void)showStatusWithMessage:(NSString *)text;
@end
2.自定义状态栏.m文件
//
//  DGCustomStatusBar.m
//  状态栏提示之后消失
//
//  Created by naton on 15/11/11.
//  Copyright © 2015年 zqk. All rights reserved.
//
#import "DGCustomStatusBar.h"
@interface DGCustomStatusBar ()
@property (nonatomic, strong)UILabel *label;
@end
@implementation DGCustomStatusBar
- (instancetype)init {
self = [super init];
if (self) {
self.frame = [UIApplication sharedApplication].statusBarFrame;
//UIWindow 有三个层级,分别是Normal ,StatusBar,Alert.输出他们三个层级的值,我们发现从左到右依次是0,1000,2000
//设置window的显示层级高于UIWindowLevelStatusBar.
self.windowLevel = UIWindowLevelStatusBar + 1.0f;
self.backgroundColor = [UIColor blackColor];
self.userInteractionEnabled = NO;
self.alpha = 0;
[self createLabel];
//makeKeyAndVisible不会使window的引用计数+1,所以在使用的时候一定要将window设置成全部变量,如果是个局部变量window在执行完makeKeyAndVisible方法之后会被释放,不会显示出来.
[self makeKeyAndVisible];
}
return self;
}
- (void)createLabel {
_label = [[UILabel alloc] initWithFrame:[UIApplication sharedApplication].statusBarFrame];
_label.textColor = [UIColor whiteColor];
_label.textAlignment = NSTextAlignmentRight;
[self addSubview:_label];
}
- (void)showStatusWithMessage:(NSString *)text {
_label.text = text;
if (self.alpha == 1) {
//当DGCustomStatusBar已经显示出来了,再连续点击显示按钮,取消延时执行,不让window隐藏.
[NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(hideWindow:) object:nil];
}
[UIView animateWithDuration:1.0f animations:^{
self.alpha = 1;
} completion:^(BOOL finished) {
[self performSelector:@selector(hideWindow:) withObject:nil afterDelay:1.0f];
}];
}
- (void)hideWindow:(id)object
{
[UIView animateWithDuration:1.0f animations:^{
self.alpha = 0;
}];
}
- (void)setStatusColor:(UIColor *)statusColor
{
_statusColor  =statusColor;
self.backgroundColor = statusColor;
}
- (void)setTextColor:(UIColor *)textColor
{
_textColor = textColor;
_label.textColor = textColor;
}
- (void)setTextAlignment:(NSTextAlignment)textAlignment
{
_textAlignment = textAlignment;
_label.textAlignment = textAlignment;
}
- (void)setTextFont:(UIFont *)textFont
{
_textFont = textFont;
_label.font = textFont;
}
@end
3.具体使用
#import "ViewController.h"
#import "DGCustomStatusBar.h"
@interface ViewController ()
@property (nonatomic, strong)DGCustomStatusBar *statusBar;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)btn:(id)sender {
[self.statusBar setBackgroundColor:[UIColor redColor]];
[self.statusBar setTextColor:[UIColor whiteColor]];
[self.statusBar setTextAlignment:NSTextAlignmentCenter];
[self.statusBar showStatusWithMessage:@"分享成功"];
}
- (DGCustomStatusBar *)statusBar {
if (_statusBar == nil) {
_statusBar = [[DGCustomStatusBar alloc] init];
}
return _statusBar;
}
@end

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 225,132评论 6 523
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 96,457评论 3 404
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 172,411评论 0 368
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 61,147评论 1 301
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 70,145评论 6 400
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 53,611评论 1 315
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 41,962评论 3 429
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 40,948评论 0 279
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 47,479评论 1 324
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 39,514评论 3 347
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 41,640评论 1 355
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 37,228评论 5 351
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 42,973评论 3 340
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 33,402评论 0 25
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 34,551评论 1 277
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 50,210评论 3 381
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 46,714评论 2 366

推荐阅读更多精彩内容