在开发中要获取网络类型是很简单的,导入Reachability直接获取状态就行了,现在我们要做一个类似下载器的那种实时把上传下载速度显示出来。

需要用到的头文件

使用Reachability

要测速度所以必须要有一个定时器,咱们为了不耗用户的流量,取的是数据的总量,然后减去上一次的检测的总量,得出的就是速度。网络现在分为wifi以及wwan两种类型。

首先头文件.h建立一个检测的数据类

@interface MonitorData : NSObject

@property (assign, nonatomic) float wwanSend;

@property (assign, nonatomic) float wwanReceived;

@property (assign, nonatomic) float wifiSend;

@property (assign, nonatomic) float wifiReceived;

@end

然后建立一个检测类

@interface MonitorFlow : NSObject

//开始检测

- (void)startMonitor;

//停止检测

- (void)stopMonitor;

@end

实现文件.M

//成员变量是内部可见的

@interface MonitorFlow ()

@property (strong,nonatomic) NSTimer *timer;

@property (assign, nonatomic) float tempWWANReceived;

@property (assign, nonatomic) float tempWWANSend;

@property (assign, nonatomic) float tempWifiReceived;

@property (assign, nonatomic) float tempWifiSend;

@end

直接把代码附上,里面有注释

@implementation MonitorFlow

- (void)startMonitor {

[self currentFlow];

self.timer = [NSTimer timerWithTimeInterval:1.0 target:self selector:@selector(refreshFlow) userInfo:nil repeats:YES];

[[NSRunLoop currentRunLoop] addTimer:self.timer forMode:NSRunLoopCommonModes];

}

- (void)stopMonitor{

[self.timer invalidate];

}

- (void)refreshFlow{

// 上传、下载

//不需要连通网络获取的是总的数据

Reachability *reachability = [Reachability reachabilityWithHostName:@"Yes-Cui"];

MonitorData *monitor = [self getMonitorDataDetail];

switch (reachability.currentReachabilityStatus) {

case ReachableViaWiFi:

{

float wifiSend = monitor.wifiSend - self.tempWifiSend;

float wifiReceived = monitor.wifiReceived - self.tempWifiReceived;

NSLog(@"wifi上传速度:%@",[NSString stringWithFormat:@"%.0f KB/s",wifiSend]);

NSLog(@"wifi下载速度:%@",[NSString stringWithFormat:@"%.0f KB/s",wifiReceived]);

}

break;

case ReachableViaWWAN:

{

float wwanSend = monitor.wwanSend - self.tempWWANReceived;

float wwanReceived = monitor.wifiReceived - self.tempWWANSend;

NSLog(@"wwan上传速度:%@",[NSString stringWithFormat:@"%.0f KB/s",wwanSend]);

NSLog(@"wwan下载速度:%@",[NSString stringWithFormat:@"%.0f KB/s",wwanReceived]);

}

break;

default:

{

NSLog(@"无网络");

}

break;

}

[self currentFlow];

}

//赋值当前流量

- (void)currentFlow{

MonitorData *monitor = [self getMonitorDataDetail];

self.tempWifiSend = monitor.wifiSend;

self.tempWifiReceived = monitor.wifiReceived;

self.tempWWANSend = monitor.wwanSend;

self.tempWWANReceived = monitor.wwanReceived;

}

//上传、下载总额流量

- (MonitorData *)getMonitorDataDetail

{

BOOL success;

struct ifaddrs *addrs;

struct ifaddrs *cursor;

struct if_data *networkStatisc;

long tempWiFiSend = ;

long tempWiFiReceived = ;

long tempWWANSend = ;

long tempWWANReceived = ;

NSString *dataName;

success = getifaddrs(&addrs) == ;

if (success)

{

cursor = addrs;

while (cursor != NULL)

{

dataName = [NSString stringWithFormat:@"%s",cursor->ifa_name];

if (cursor->ifa_addr->sa_family == AF_LINK)

{

if ([dataName hasPrefix:@"en"])

{

networkStatisc = (struct if_data *) cursor->ifa_data;

tempWiFiSend += networkStatisc->ifi_obytes;

tempWiFiReceived += networkStatisc->ifi_ibytes;

}

if ([dataName hasPrefix:@"pdp_ip"])

{

networkStatisc = (struct if_data *) cursor->ifa_data;

tempWWANSend += networkStatisc->ifi_obytes;

tempWWANReceived += networkStatisc->ifi_ibytes;

}

}

cursor = cursor->ifa_next;

}

freeifaddrs(addrs);

}

MonitorData *monitorData = [MonitorData new];

monitorData.wifiSend = tempWiFiSend/;

monitorData.wifiReceived = tempWiFiReceived/;

monitorData.wwanSend = tempWWANSend/;

monitorData.wwanReceived = tempWWANReceived/;

return monitorData;

}

@end

來源:https://www.jianshu.com/p/42ab08c998ae

IOS实时监控上传下载速度的更多相关文章

  1. [Swift通天遁地]四、网络和线程-(9)上传图片并实时显示上传进度

    ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★➤微信公众号:山青咏芝(shanqingyongzhi)➤博客园地址:山青咏芝(https://www.cnblogs. ...

  2. 【iOS 使用github上传代码】详解

    [iOS 使用github上传代码]详解 一.github创建新工程 二.直接添加文件 三.通过https 和 SSH 操作两种方式上传工程 3.1https 和 SSH 的区别: 3.1.1.前者可 ...

  3. iOS上架ipa上传问题那些事

    iOS上架ipa上传问题那些事 原文: http://www.jianshu.com/p/1e22543285c2 字数513 阅读312 评论0 喜欢1 通过xcode直接打包上传,不会提示你的ip ...

  4. 使用IPTABLES限制IP上传下载速度,如何用iptables限速?

    怎样使用IPTABLES限制IP上传下载速度,如何用iptables限速?我们先来看范例: iptables限制某IP的上传速度为1000KB/秒(8Mbps,流入服务器带宽),即在此IP所在的服务器 ...

  5. iOS多图上传

    iOS多图上传涉及到多线程问题,个人比较喜欢使用GCD操作,下边是最近写的一个多图上传代码,附带相关注释 __block BOOL allSucc = YES; __block int m = 0; ...

  6. iOS自动化打包上传的踩坑记

    http://www.cocoachina.com/ios/20160624/16811.html 很久以前就看了很多关于iOS自动打包ipa的文章, 看着感觉很简单, 但是因为一直没有AppleDe ...

  7. IOS开发-图片上传

    目前IOS端开发,图片上传到服务器分为两种,一种是直接上到服务器,一种是借助第三方储存(减少服务器压力). 一.直接上传到服务器 /** * 代码演示 */ //*******UIImagePNGRe ...

  8. iOS 七牛云上传并获取图片----【客户端】

           最近做了七牛云存储的有关内容,涉及到与后台交互获取验证的token,无奈,后台自命清高,不与理会,没办法呀,于是自己搞呗.首先呢在在七牛上注册一个账号,然后呢添加一个存储空间这时候空间名 ...

  9. 【iOS】文件上传小记

    iOS由该系统提供API可以实现可以实现文件的上传和下载,有两种方法来. NSURLConnection与NSURLSession. 当中NSURLConnection是使用非常久的的一种方式.NSU ...

随机推荐

  1. CCNET自动构建之路

    人永远追求效率(想偷懒),不想手动编译项目.发布站点于是产生了自动构建技术,.NET领域中CCNET是个不错的选择. 一路问题不少,记录一下. 准备环境 服务器上需要有iis.vs(与开发环境的版本一 ...

  2. postgresql的show databases、show tables、describe table操作

    1.相当与mysql的show databases; select datname from pg_database; 2.相当于mysql的show tables; SELECT table_nam ...

  3. IOS8 通知中心(Notification Center)新特性

     本文转载至 http://blog.csdn.net/jinkaiouyang/article/details/30029441   ios手机apple通知中心notificationCenter ...

  4. 【BZOJ4811】[Ynoi2017]由乃的OJ 树链剖分+线段树

    [BZOJ4811][Ynoi2017]由乃的OJ Description 由乃正在做她的OJ.现在她在处理OJ上的用户排名问题.OJ上注册了n个用户,编号为1-",一开始他们按照编号排名. ...

  5. Android笔记之为自定义对话框添加移动动画效果

    给底部的对话框添加移动动画效果 可通过Window.setWindowAnimations(int resId)设置 SharingDialog.java package com.bu_ish.sha ...

  6. tornado安全应用之用户认证

    在这个例子中,我们将只通过存储在安全cookie里的用户名标识一个人.当某人首次在某个浏览器(或cookie过期后)访问我们的页面时,我们展示一个登录表单页面.表单作为到LoginHandler路由的 ...

  7. 3.改变 HTML 内容

    ①x=document.getElementById("demo") //查找元素 ②x.innerHTML="Hello JavaScript"; //改变内 ...

  8. ubuntu 16.04安装Jenkins

    快速安装: sudo wget -q -O - http://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add - sudo ...

  9. Spring 4.2框架中注释驱动的事件监听器详解

    事件交互已经成为很多应用程序不可或缺的一部分,spring框架提供了一个完整的基础设施来处理瞬时事件.下面我们来看看Spring 4.2框架中基于注释驱动的事件监听器. 1.早期的方式 在早期,组件要 ...

  10. Idea操作与问题解决

    1,.properties文件汉字编码出错 主要是Editer的Encoding出错,可在File->settings->Editer->FileEncoding中修改为: 可参考: ...