iOS开发:自定义状态栏代码详解

   公司的开发的项目要求在状态栏上边加入程序下载的进度条,之前写的程序,由于是根据ipad的朝向来设置自定义的状态栏的frame,以及子视图的 frame和transform,出现一些不太容易解决的bug。这两天正好项目不太紧,就好好学习一下这方面的知识,以下是我所总结的一点经验:

  这里说明一下,Apple没有开放的状态栏的API,在ios 的官方文档没有提到修改Window Level的方式;

  先看一下Window Level的可用的值包括:

  1: typedef CGFloat UIWindowLevel;

  2: const UIWindowLevel UIWindowLevelNormal; // 0.0

  3: const UIWindowLevel UIWindowLevelAlert; // 2000.0

  4: const UIWindowLevel UIWindowLevelStatusBar; // 1000.0

  默认我们的UIView layer都是在UIWindowLevelNormal上,这也就是为什么系统弹出来的对话框在我们的视图之上,因为它的Window Level级别更高。

  根据WindowLevel的原理我们也就知道,如果想在系统的状态栏上,添加自定义的状态栏,就需要比UIWindowLevelStatusBar的级别更高,接下来,用代码说明一下:

  首先,先建一个Single View Application,名字自定义就可以了,

  然后,新建一个类命名为: StatusBarOverlay 继承自UIWindow类,代码:

  StatusBarOverlay.h文件

  1: #import

  2:

  3: @interface StatusBarOverlay : UIWindow{

  4: UIView *contentView;

  5: UILabel *textLabel;

  6: }

  7:

  8: @property (nonatomic, retain) UIView *contentView;

  9:

  10: @property (nonatomic, retain) UILabel *textLabel;

  11:

  12: @end

  StatusBarOverlay.m文件

  1: //

  2: // StatusBarOverlay.m

  3: // StatusBarDemo

  4: //

  5: // Created by jordy wang on 12-8-7.

  6: // Copyright (c) 2012年 __MyCompanyName__. All rights reserved.

  7: //

  8:

  9: #import "StatusBarOverlay.h"

  10:

  11: #define STATUS_BAR_ORIENTATION [UIApplication sharedApplication].statusBarOrientation

  12: #define ROTATION_ANIMATION_DURATION [UIApplication sharedApplication].statusBarOrientationAnimationDuration

  13:

  14:

  15: @interface StatusBarOverlay()

  16:

  17: - (void)initializeToDefaultState;

  18: - (void)rotateStatusBarWithFrame:(NSValue *)frameValue;

  19: - (void)setSubViewHFrame;

  20: - (void)setSubViewVFrame;

  21: @end

  22:

  23:

  24: @implementation StatusBarOverlay

  25: @synthesize contentView;

  26: @synthesize textLabel;

  27:

  28: //重写init方法

  29: - (id)init

  30: {

  31: self = [super initWithFrame:CGRectZero];

  32: if (self) {

  33: self.windowLevel = UIWindowLevelStatusBar + 1;

  34: self.frame = [UIApplication sharedApplication].statusBarFrame;

  35: [self setBackgroundColor:[UIColor orangeColor]];

  36: [self setHidden:NO];

  37:

  38: //内容视图

  39: UIView *_contentView = [[UIView alloc] initWithFrame:self.bounds];

  40: self.contentView = _contentView;

  41: [self.contentView setAutoresizingMask:UIViewAutoresizingFlexibleWidth];

  42: [self.contentView setBackgroundColor:[UIColor cyanColor]];

  43: [self addSubview:self.contentView];

  44: [_contentView release];

  45:

  46:

  47: //添加textLabel

  48: UILabel *_textLabel = [[UILabel alloc] initWithFrame:CGRectMake(30, 0, CGRectGetWidth(self.frame)-60, CGRectGetHeight(self.frame))];

  49: self.textLabel = _textLabel;

  50: [self.textLabel setBackgroundColor:[UIColor blueColor]];

  51: [self.textLabel setFont:[UIFont systemFontOfSize:12]];

  52: [self.textLabel setTextAlignment:UITextAlignmentCenter];

  53: [self.textLabel setTextColor:[UIColor blackColor]];

  54: [self.textLabel setText:@"自定义的状态栏 author by jordy"];

  55: [self.contentView addSubview:self.textLabel];

  56: [_textLabel release];

  57:

  58: //注册监听---当屏幕将要转动时,所出发的事件(用于操作本视图改变其frame)

  59: [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(willRotateScreenEvent:)

  name:UIApplicationWillChangeStatusBarFrameNotification object:nil];

  60: //初始化

  61: [self initializeToDefaultState];

  62: }

  63:

  64: return self;

  65: }

  66:

  67:

  68:

  69:

  70: //初始化为默认状态

  71: - (void)initializeToDefaultState

  72: {

  73: //获取当前的状态栏位置

  74: CGRect statusBarFrame = [UIApplication sharedApplication].statusBarFrame;

  75: //设置当前视图的旋转, 根据当前设备的朝向

  76: [self rotateStatusBarWithFrame:[NSValue valueWithCGRect:statusBarFrame]];

  77:

  78:

  79:

  80: }

  81:

  82:

  83: //旋转屏幕

  84: - (void)rotateStatusBarWithFrame:(NSValue *)frameValue

  85: {

  86: CGRect frame = [frameValue CGRectValue];

  87: UIInterfaceOrientation orientation = STATUS_BAR_ORIENTATION;

  88:

  89: if (orientation == UIDeviceOrientationPortrait) {

  90: self.transform = CGAffineTransformIdentity; //屏幕不旋转

  91: [self setSubViewVFrame];

  92: }else if (orientation == UIDeviceOrientationPortraitUpsideDown) {

  93: self.transform = CGAffineTransformMakeRotation(M_PI); //屏幕旋转180度

  94: [self setSubViewVFrame];

  95: }else if (orientation == UIDeviceOrientationLandscapeRight) {

  96: self.transform = CGAffineTransformMakeRotation((M_PI * (-90.0f) / 180.0f)); //屏幕旋转-90度

  97: [self setSubViewHFrame];

  98: }else if (orientation == UIDeviceOrientationLandscapeLeft){

  99: self.transform = CGAffineTransformMakeRotation(M_PI * 90.0f / 180.0f); //屏幕旋转90度

  100: [self setSubViewHFrame];

  101: }

  102:

  103: self.frame = frame;

  104: [self.contentView setFrame:self.bounds];

  105: }

  106:

  107: //设置横屏的子视图的frame

  108: - (void)setSubViewHFrame

  109: {

  110: self.textLabel.frame = CGRectMake(30, 0, 1024-60, 20);

  111: }

  112: //设置竖屏的子视图的frame

  113: - (void)setSubViewVFrame

  114: {

  115: self.textLabel.frame = CGRectMake(30, 0, 748-60, 20);

  116: }

  117:

  118: #pragma mark -

  119: #pragma mark 响应屏幕即将旋转时的事件响应

  120: - (void)willRotateScreenEvent:(NSNotification *)notification

  121: {

  122: NSValue *frameValue = [notification.userInfo valueForKey:UIApplicationStatusBarFrameUserInfoKey];

  123: [self rotateStatusBarAnimatedWithFrame:frameValue];

  124: }

  125:

  126: - (void)rotateStatusBarAnimatedWithFrame:(NSValue *)frameValue {

  127: [UIView animateWithDuration:ROTATION_ANIMATION_DURATION animations:^{

  128: self.alpha = 0;

  129: } completion:^(BOOL finished) {

  130: [self rotateStatusBarWithFrame:frameValue];

  131: [UIView animateWithDuration:ROTATION_ANIMATION_DURATION animations:^{

  132: self.alpha = 1;

  133: }];

  134: }];

  135: }

  136:

  137: - (void)dealloc

  138: {

  139: [[NSNotificationCenter defaultCenter] removeObserver:self];

  140: [textLabel release];

  141: textLabel = nil;

  142:

  143: [contentView release];

  144: contentView = nil;

  145:

  146: [super dealloc];

  147: }

  148:

  149: @end

  由于代码比较简单,并且我在上述代码里有相应的注释,这里需要说明一点的是,默认我们继承自UIWindow的StatusBarOverlay类是hidden状态,需要在初始化的时候设置它的hidden属性为NO,

  在屏幕旋转过程中,自定义的状态栏与UIViewController之间的旋转是分离的,所以我们需要做一个隐藏的动画,在旋转过程前先隐藏自定义的状态栏,旋转结果后设置显示状态。

  如果需要做一种动画,比方从底部下移显示一条信息,隔N秒后又自动收回的动画,直接设置自定义的视图的y坐标就可以了,默认y坐标设置是0。

  最后, 使用它的方式也比较简单,只需要初始化,代码:

  StatusBarOverlay *statusBarOverlay = [[StatusBarOverlay alloc] init];

  由于我公司的需求是开机自动下载的功能,所以我在初始化的时候,是放在了AppDelegate中。

时间: 2024-10-26 21:30:10

iOS开发:自定义状态栏代码详解的相关文章

iOS开发入门:Passbook详解与开发案例

Passbook是iOS 6的新功能,只能在iPhone和iPod touch设备中使用.它可以帮助我们管理商家发放的电子会员卡.积分卡.优惠券等.这将对未来电子商务产生深远的影响.商家通过发放会员卡.积分卡.优惠券等,提高与消费者的互动,吸引人们更多消费.Passbook的诞生,正是为了将所有这些"卡"和"券"电子化,存放在iPhone或iPod touch里. Passbook与Pass iOS 6中的Passbook能够帮助我们集中管理电子"卡&qu

iOS开发之手势gesture详解_IOS

前言 在iOS中,你可以使用系统内置的手势识别(GestureRecognizer),也可以创建自己的手势.GestureRecognizer将低级别的转换为高级别的执行行为,是你绑定到view的对象,当发生手势,绑定到的view对象会响应,它确定这个动作是否对应一个特定的手势(swipe,pinch,pan,rotation).如果它能识别这个手势,那么就会向绑定它的view发送消息,如下图 UIKit框架提供了一些预定义的GestureRecognizer.包含下列手势 UITapGestu

iOS开发之表视图详解_IOS

本文详细介绍了表视图的用法.具体如下: 概述 表视图组成 表视图是iOS开发中最重要的视图,它以列表的形式展示数据.表视图又一下部分组成: 表头视图:表视图最上边的视图 表脚视图:表视图最下边的视图 单元格(cell):表视图中每一行的视图 节(section):由多个单元格组成,应用于分组列表 节头 节脚 表视图的相关类 UITableView继承自UIScrollView,且有两个协议:UITableViewDelegate和UITableViewDataSource.此外UITableVi

【IOS开发必收藏】详解IOS应用程序内使用IAP/STOREKIT付费、沙盒(SANDBOX)测试、创建测试账号流程!【2012-12-11日更新获取”产品付费数量等于0的问题”】

本站文章均为 李华明Himi 原创,转载务必在明显处注明:  转载自[黑米GameDev街区] 原文链接: http://www.himigame.com/iphone-cocos2d/550.html //--2012-12-11日更新   获取"产品付费数量等于0这个问题"的原因 看到很多童鞋问到,为什么每次都返回数量等于0?? 其实有童鞋已经找到原因了,原因是你在 ItunesConnect 里的 "Contracts, Tax, and Banking "没

iOS开发那些事-Passbook详解与开发案例(附视频)

Passbook是iOS 6的新功能,只能在iPhone和iPod touch设备中使用.它可以帮助我们管理商家发放的电子会员卡.积分卡.优惠券等.这将对未来电子商务产生深远的影响.商家通过发放会员卡.积分卡.优惠券等,提高与消费者的互动,吸引人们更多消费.Passbook的诞生,正是为了将所有这些"卡"和"券"电子化,存放在iPhone或iPod touch里. Passbook与Pass iOS 6中的Passbook能够帮助我们集中管理电子"卡&qu

苹果iOS 开发之照片框架详解

一. 概要 在 iOS 设备中,照片和视频是相当重要的一部分.最近刚好在制作一个自定义的 iOS 图片选择器,顺便整理一下 iOS 中对照片框架的使用方法.在 iOS 8 出现之前,开发者只能使用 AssetsLibrary 框架来访问设备的照片库,这是一个有点跟不上 iOS 应用发展步伐以及代码设计原则但确实强大的框架,考虑到 iOS7 仍占有不少的渗透率,因此 AssetsLibrary 也是本文重点介绍的部分.而在 iOS8 出现之后,苹果提供了一个名为 PhotoKit 的框架,一个可以

iOS开发:UIView动画详解

  执行动画所需要的工作由UIView类自动完成,但仍要在希望执行动画时通知视图,为此需要将改变属性的代码包装到一个代码块中. 1.UIView动画具体创建方法 - (void)buttonPressed { // 交换本视图控制器中2个view位置 [self.view exchangeSubviewAtIndex:0 withSubviewAtIndex:1]; //UIView开始动画,第一个参数是动画的标识,第二个参数附加的应用程序信息用来传递给动画代理消息 [UIView beginA

基于Tomcat5.0和Axis2开发Web Service代码详解

1.HelloWorld做了些什么? HelloWorld功能非常简单,在客户端输入你的姓名,本例中为ZJ.参数传递到服务器端后,经过处理将返回name+"HelloWorld!",本例中为ZJ HelloWorld! 2.服务器端文件HelloWorld.java HelloWorld.java package sample; import org.apache.axiom.om.OMAbstractFactory; import org.apache.axiom.om.OMElem

游戏开发-用vb.net编写五子棋游戏代码详解

问题描述 用vb.net编写五子棋游戏代码详解 vb.net初学者,求五子棋游戏编写步骤详解代码解释还有ai算法的构建 解决方案 http://download.csdn.net/detail/winter_ling/2469095http://download.csdn.net/detail/jinsenianhua2012/4286183http://download.csdn.net/detail/qwciyuan/3362601 解决方案二: 五子棋的核心算法 五子棋是一种受大众广泛喜爱