apple official document
关于Status Bars首先贴上apple 官方文档:apple status bar.
Use the system-provided status bar. People expect the status bar to be consistent systemwide. Don’t replace it with a custom status bar.
为了保持一个全局风格统一的status bar,请使用系统提供的status bar.不要用自定义的status bar取代它.
也就是说苹果明确声明,不要使用custom status bar.因此,当你决定要在你的app中使用custom status bar时,请谨慎考虑苹果appstore审核被拒风险.(尤其近来大批app被下架).
但以实际情况来说,不是说绝对不可以使用.至少目前在我的项目里以及一些很知名的app中都有使用.知晓这个风险并保持谨慎就可以了.下面分享我的一点经验.
如何谨慎使用custom status bar
目前我总结的一条原则很简单:
仅在app的部分界面使用custom status bar.
ios 系统api提供了hide status bar功能(详见我的上一篇文章:hide status bar)
那么在部分界面隐藏系统状态栏,可以认为是被许可的.在这样的页面,我添加UI显示时间,电池电量,网络状态,蓝牙状态等,也可以被认为是OK的了.但是如果你在全局都进行custom status bar替换的系统的话,我认为风险就比较大了. (仅供参考)
custom status bar的实现
1.hide status bar
首先隐藏系统状态栏,避免互相干扰.(如何实现,见上,略)
2.使用UIWindow
众所周知,system status bar是UIWindow实现的,因此仿照之.
<1>初始化一个UIWindow,然后:
<2>设置rootViewController;
<3>设置windowLevel = UIWindowLevelStatusBar;
<4>设置window的frame;(其height可以去system status bar的height进行赋值)
<5>显示执行代码:[self.customStatusBar setHidden:NO];
注意:如果要取system status bar的height,那么在hide system status bar之前取,否则值为0.
3.battery
监听battery主要用到两个通知,如下:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(batteryLevelDidChange:) name:UIDeviceBatteryLevelDidChangeNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(batteryStateDidChange:) name:UIDeviceBatteryStateDidChangeNotification object:nil];
UIDeviceBatteryLevelDidChangeNotification主要用于监听battery电量level的变化:用于实时更新电量;
UIDeviceBatteryStateDidChangeNotification主要用于监听battery的state变化:用于更新batterystate:
if (state == UIDeviceBatteryStateCharging || state == UIDeviceBatteryStateFull) {
/// 充电中...
} else {
/// normal
}
关于电池的UI更新,因为每个产品设计不同,ui实现不同,我实现的基本接近于系统的Ui,有需要的话,后续我可以补充Demo代码.
记得使用完毕的时候remove:
[[NSNotificationCenter defaultCenter] removeObserver:self name:UIDeviceBatteryLevelDidChangeNotification object:nil];
[[NSNotificationCenter defaultCenter] removeObserver:self name:UIDeviceBatteryStateDidChangeNotification object:nil];
4.volume
音量监听,也是一个通知:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(volumeChanged:) name:kAVSystemVolumeChangeNotification object:nil];
[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
- (void)volumeChanged:(NSNotification*)notification {
if ([[notification.userInfo objectForKey:@"AVSystemController_AudioCategoryNotificationParameter"] isEqualToString:@"Audio/Video"]) {
if ([[notification.userInfo objectForKey:@"AVSystemController_AudioVolumeChangeReasonNotificationParameter"] isEqualToString:@"ExplicitVolumeChange"]) {
CGFloat volume = [[notification.userInfo objectForKey:@"AVSystemController_AudioVolumeNotificationParameter"] floatValue];
[self updateMuteIcon:volume]; /// 我这里实现的是静音icon的显示与隐藏.
}
}
}
使用完毕同样需要关闭:
[[NSNotificationCenter defaultCenter] removeObserver:self name:kAVSystemVolumeChangeNotification object:nil];
[[UIApplication sharedApplication] endReceivingRemoteControlEvents];
5.time
Time is necessary to be shown.
时间也比较简单:起一个timer进行时间更新即可.可以使用NSTimer或者dispatch_source_set_timer,我使用的后者.据说更高效,更准确.
因为我的时间不显示秒,我曾经想过30秒轮询一次,后来仔细想了30秒发现不行.(优秀的程序员可能只需要1秒就想明白了)
6.blueTooth with battery
老规矩优先看apple document:apple blueTooth.
其中:14. Bluetooth Headset Battery Level Indication
大意是:
任何免提的蓝牙耳机都可以在iOS设备的状态栏中显示一个用来标识他电池电量的图标。这个特性被所有的iOS设备所支持,包括iPhone、iPod和iPad。耳机的蓝牙知识通过两个iOS蓝牙HFP AT命令:HFP Command AT+XAPL
HFP命令AT+XAPL
描述:允许通过耳机自定义AT命令
发起者:耳机
格式:AT+XAPL=[vendorID]-[productID]-[version],[features]
参数:
vendorID: 标识生产商的vendor ID的十六进制表示,但是没有0x前缀
productID: 标识生产生的product ID的十六进制表示,但是没有0x前缀
version: 软件的版本
features: 用10进制标识的位标识:
1 = 耳机支持电池电量报告
2 = 耳机暂停或者正在充电
其他值保留
例子: AT+XAPL=ABCD-1234-0100,3
响应: +XAPL=iPhone,[features]
HFP命令AT+IPHONEACCEV
描述:报告耳机的状态变更
发起者:耳机
格式:AT+IPHONEACCEV=[Number of key/value pairs ],[key1 ],[val1 ],[key2 ],[val2 ],...
参数:
Number of key/value pairs : 接下来参数的数量
key: 被报告状态变化的类型
1 = 电量等级
2 = 暂停状态
val: 更改的值
Battery events:0-9之间数字的字符串 A string value between '0' and '9'.
Dock state: 0 = undocked, 1 = docked.
Example: AT+IPHONEACCEV=1,1,3
实际上,这个功能,我也还没实现.(因为需求比较小众)
Demo
有时间,我会补充上.(估计也不是每个人都需要)
网友评论