在开发APP时,涉及网络连接的时候,都会想着提前判断一下当前的网络连接状态,在这里介绍一下如何获取状态栏上的当前的网络状态。
1.获取状态栏
#import "ViewController.h"
#import <objc/message.h>
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
// 状态栏是由当前app控制的,首先获取当前app
UIApplication *app = [UIApplication sharedApplication];
// 遍历当前app的所有属性,找到关于状态栏的
unsigned int outCount = 0;
Ivar *ivars = class_copyIvarList(app.class, &outCount);
for(int i = 0; i < outCount; i++){
Ivar ivar = ivars[i];
NSLog(@"%s",ivar_getName(ivar));
}
}
打印出来日志如下图:
通过上图我们可以看到是有状态栏这个成员的,所以直接通过KVC来获取当前状态栏。
2.获取状态栏的所有当前显示视图
// 状态栏是由当前app控制的,首先获取当前app
UIApplication *app = [UIApplication sharedApplication];
//获取状态栏
id statusBar = [app valueForKeyPath:@"statusBar"];
// 遍历状态栏的所有成员
unsigned int outCount = 0;
Ivar *ivars = class_copyIvarList([statusBar class], &outCount);
for(int i = 0; i < outCount; i++){
Ivar ivar = ivars[i];
NSLog(@"%s",ivar_getName(ivar));
}
打印日志如下图
通过上图可以看到状态栏中有一个foregroundView成员,它就是当前显示的所有视图
3.遍历所有子视图。
// 状态栏是由当前app控制的,首先获取当前app
UIApplication *app = [UIApplication sharedApplication];
//获取状态栏的所有子视图
NSArray *children = [[[app valueForKeyPath:@"statusBar"] valueForKeyPath:@"foregroundView"] subviews];
//遍历子视图
for (id child in children) {
NSLog(@"--%@", [child class]);
}
打印日志如下图
可以看到UIStatusBarDataNetworkItemView就是我们所需要的显示当前网络状态的视图。
4.取出用于显示网络状态的视图,并遍历其内部的所有成员变量
// 状态栏是由当前app控制的,首先获取当前app
UIApplication *app = [UIApplication sharedApplication];
//获取状态栏的所有子视图
NSArray *children = [[[app valueForKeyPath:@"statusBar"] valueForKeyPath:@"foregroundView"] subviews];
//遍历子视图
for (id child in children) {
if ([child isKindOfClass:NSClassFromString(@"UIStatusBarDataNetworkItemView")]) {
unsigned int outCount = 0;
Ivar *ivars = class_copyIvarList([child class], &outCount);
for(int i = 0; i < outCount; i++){
Ivar ivar = ivars[i];
NSLog(@"%s",ivar_getName(ivar));
}
}
}
此时就可以看到有_dataNetworkType这个成员,很明显它就是用来表示当前网络状态的
5.取得当前网络状态
// 状态栏是由当前app控制的,首先获取当前app
UIApplication *app = [UIApplication sharedApplication];
//获取状态栏的所有子视图
NSArray *children = [[[app valueForKeyPath:@"statusBar"] valueForKeyPath:@"foregroundView"] subviews];
int type = 0;
//遍历子视图
for (id child in children) {
if ([child isKindOfClass:NSClassFromString(@"UIStatusBarDataNetworkItemView")]) {
type = [[child valueForKeyPath:@"dataNetworkType"] intValue];
}
}
NSLog(@"----%d", type);
打印出的type数字对应的网络状态依次是:0 - 无网络; 1 - 2G; 2 - 3G; 3 - 4G; 5 - WIFI