iOS开发系列之常用自定义控件开发集—自定义状态栏消息提示控件开发

在实际开发中消息提示时很常见的需求,为了个性化和拥有简洁的UI状态栏提示是比较好的方案,好处很多如:不遮挡主UI,新意,下面贴出实现代码。
WHC_StatusBarMessage.h头文件如下:

//
//  WHCStatusBarMessage.m
//  WHCStatusBarMessage
//
//  Created by apple on 14-3-28.
//  Copyright (c) 2014年 apple. All rights reserved.
//

#import "WHC_StatusBarMessage.h"
#define kPading (5.0)             //边距
#define kLogoWidth (15.0)         //图标logo宽度

@interface WHC_StatusBarMessage(){
    UILabel     * msgLab;         //消息标签
    UIImageView * logoImgV;       //logo图标对象
    UIImage     * logoImg;        //logo图标
    CGFloat       height;         //高度
    CGFloat       screenWidth;    //屏幕宽度
    CGFloat       screenHeight;   //屏幕高度
}
@property(nonatomic,retain)UILabel  * statusLab;
@property(nonatomic,retain)UIImageView  * logImgView;
@property(nonatomic,retain)NSTimer  * runTimer;           //停留时钟
@end

@implementation WHC_StatusBarMessage
static  WHC_StatusBarMessage  * msb;
//构建单例
+(WHC_StatusBarMessage *)shareStatusBar{
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        msb = [[WHC_StatusBarMessage alloc]init];
    });
    return msb;
}

//初始化UI
-(id)init
{
    CGRect statusFrame = [UIApplication sharedApplication].statusBarFrame;
    height = statusFrame.size.height;
    screenWidth = [UIScreen mainScreen].bounds.size.width;
    screenHeight = [UIScreen mainScreen].bounds.size.height;
    self = [super initWithFrame:statusFrame];
    if(self){
        self.frame = statusFrame;
        self.autoresizingMask = UIViewAutoresizingFlexibleWidth;
        self.windowLevel = UIWindowLevelStatusBar + 1.0;
        self.backgroundColor = kWHC_StatusBarMessageBack_Color;
        logoImg = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"29x29" ofType:@"png"]];
        logoImgV = [[UIImageView alloc]initWithFrame:CGRectMake(kPading, kPading / 2.0, kLogoWidth, kLogoWidth)];
        logoImgV.backgroundColor = [UIColor clearColor];
        [self addSubview:logoImgV];
        msgLab = [[UILabel alloc]initWithFrame:CGRectMake(logoImgV.frame.origin.x + kPading + logoImgV.frame.size.width, 0.0, screenWidth - (logoImgV.frame.origin.x + kPading + logoImgV.frame.size.width), statusFrame.size.height)];
        msgLab.backgroundColor = [UIColor clearColor];
        msgLab.font = [UIFont systemFontOfSize:14.0];
        msgLab.textColor = [UIColor whiteColor];
        [self addSubview:msgLab];

        //注册单击事件
        UITapGestureRecognizer  * tapStatusBar = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tapTopBar:)];
        [self addGestureRecognizer:tapStatusBar];

        //注册状态栏方向监听事件
        [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(screenOrientationChange:) name:UIApplicationWillChangeStatusBarFrameNotification object:nil];
    }

    return self;
}

//处理单击状态栏消息
- (void)tapTopBar:(UITapGestureRecognizer *)tapGesture{
    if(_whcStatusBardelegate && [_whcStatusBardelegate respondsToSelector:@selector(didTapTouchWHCStatusBarMessageDoSomething)]){
        [_whcStatusBardelegate didTapTouchWHCStatusBarMessageDoSomething];
    }
}

//显示状态栏消息
-(void)showTextMessage:(NSString*)strMessage delayTime:(NSInteger)delay
{
    [self.runTimer invalidate];
    self.runTimer = nil;
    if(logoImg == nil){
        logoImg = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"29x29" ofType:@"png"]];
    }
    if(delay == -1) delay = 3;
    logoImgV.image = logoImg;
    msgLab.text = strMessage;
    __block CGRect  stateFrame = self.frame;
    stateFrame.origin.y = -20.0;
    self.frame = stateFrame;
    [UIView animateWithDuration:0.2 animations:^{
        stateFrame.origin.y = 0.0;
        self.frame = stateFrame;
    }];
    [self makeKeyAndVisible];
    self.runTimer = [NSTimer scheduledTimerWithTimeInterval:delay target:self selector:@selector(dismissTimer) userInfo:nil repeats:NO];
}
-(void)showMessage:(NSString*)strMessage logImage:(UIImage *)logImage delayTime:(NSInteger)delay{
    logoImg = logImage;
    [self showTextMessage:strMessage delayTime:delay];
}
-(void)dismissTimer{
    double delayInSeconds = 0.3;
    dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayInSeconds * NSEC_PER_SEC));
    dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
        msb.hidden = YES;
    });
}
#pragma mark - screenChange
-(void)screenOrientationChange:(NSNotification*)notif
{
    UIInterfaceOrientation  orientation = [[[notif userInfo] objectForKey:UIApplicationStatusBarOrientationUserInfoKey] integerValue];
    switch (orientation) {
        case UIInterfaceOrientationPortrait:
            self.transform = CGAffineTransformIdentity;
            self.frame = CGRectMake(0.0, 0.0, screenWidth, height);
            break;
        case UIInterfaceOrientationPortraitUpsideDown:
            self.transform = CGAffineTransformMakeRotation(M_PI);
            self.center = CGPointMake(screenWidth / 2.0, screenHeight - height / 2.0);
            self.bounds = CGRectMake(0.0, 0.0, screenWidth, height);
            break;
        case UIInterfaceOrientationLandscapeLeft:
            self.transform = CGAffineTransformMakeRotation(-M_PI_2);
            self.center = CGPointMake(height / 2.0, screenHeight / 2.0);
            self.bounds = CGRectMake(0.0, 0.0, screenHeight, height);
            break;
        case UIInterfaceOrientationLandscapeRight:
            self.transform = CGAffineTransformMakeRotation(M_PI_2);
            self.center = CGPointMake(screenWidth - height / 2.0, screenHeight / 2.0);
            self.bounds = CGRectMake(0.0, 0.0, screenHeight, height);
            break;
        default:
            break;
    }
}
@end

运行效果如图

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值