ios 实时监控每秒请求的网络数据

1.App类的只能取判接收数据
2.App外的可以监控网卡,注意监控网卡是总流量的消耗
如果不准,看看是不是通知推送 4g流量消耗等等
因为比较简单就直接贴代码出来

使用方法

#import "ViewController.h"
#import "NSObject+CheckNetWorkBytes.h"

@interface ViewController ()
@end

@implementation ViewController
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(getInternetface2) userInfo:nil repeats:YES];
    //初始化流量计算器
    [NSObject initCheck];
    [timer fireDate];
}

- (void)getInternetface2 {
    long perSecond = [NSObject getNetWorkBytesPerSecond]; //获取当前秒流量
    NSString *reslut = [NSString stringWithFormat:@"哈哈流量%@/s",[NSObject convertStringWithbyte:perSecond]];
    NSLog(@"%@",reslut);
}

@end

新建一个分类 NSObject+CheckNetWorkBytes
h类中包含内容

#import <Foundation/Foundation.h>

@interface NSObject (CheckNetWorkBytes)
+ (void )initCheck;
+ (long long )getNetWorkBytesPerSecond;
+ (long long )getGprsWifiFlowIOBytes;
+ (NSString *)convertStringWithbyte:(long)bytes;
@end

m类包含内容

//
//  NSObject+CheckNetWorkBytes.m
//  checkNetWork
//
//  Created by kai_leedarson on 2018/9/21.
//  Copyright © 2018年 maple_leedarson. All rights reserved.
//

#import "NSObject+CheckNetWorkBytes.h"
#include <arpa/inet.h>
#include <net/if.h>
#include <ifaddrs.h>
#include <net/if_dl.h>

uint64_t _lastBytes_CheckNetWorkBytes;
@implementation NSObject (CheckNetWorkBytes)

+ (void )initCheck {
    _lastBytes_CheckNetWorkBytes = 0;
}

+ (long long )getNetWorkBytesPerSecond {
    long newBytes = [NSObject getGprsWifiFlowIOBytes];
    long currentBytes = 0;
    if ( _lastBytes_CheckNetWorkBytes > 0) {
        currentBytes = newBytes - _lastBytes_CheckNetWorkBytes;
    }
    _lastBytes_CheckNetWorkBytes = newBytes;
    return currentBytes;
}


/*获取网络流量信息*/
+ (long long )getGprsWifiFlowIOBytes{
    struct ifaddrs *ifa_list = 0, *ifa;
    if (getifaddrs(&ifa_list) == -1) {
        return 0;
    }
    uint64_t iBytes = 0;
    uint64_t oBytes = 0;
    for (ifa = ifa_list; ifa; ifa = ifa->ifa_next) {
        if (AF_LINK != ifa->ifa_addr->sa_family)
            continue;
        if (!(ifa->ifa_flags & IFF_UP) && !(ifa->ifa_flags & IFF_RUNNING))
            continue;
        if (ifa->ifa_data == 0)
            continue;
        //Wifi
        if (strncmp(ifa->ifa_name, "lo", 2)) {
            struct if_data *if_data = (struct if_data *)ifa->ifa_data;
            iBytes += if_data->ifi_ibytes;
            oBytes += if_data->ifi_obytes;
        }
        //3G或者GPRS
        if (!strcmp(ifa->ifa_name, "pdp_ip0")){
            struct if_data *if_data = (struct if_data *)ifa->ifa_data;
            iBytes += if_data->ifi_ibytes;
            oBytes += if_data->ifi_obytes;
        }
    }
    freeifaddrs(ifa_list);
    uint64_t bytes = 0;
    bytes = iBytes + oBytes;
    return bytes;
}

//将bytes单位转换
+ (NSString *)convertStringWithbyte:(long)bytes{
    if(bytes < 1024){ // B
        return [NSString stringWithFormat:@"%ldB", bytes];
    }else if(bytes >= 1024 && bytes < 1024 * 1024){// KB
        return [NSString stringWithFormat:@"%.1fKB", (double)bytes / 1024];
    }else if(bytes >= 1024 * 1024 && bytes < 1024 * 1024 * 1024){// MB
        return [NSString stringWithFormat:@"%.2fMB", (double)bytes / (1024 * 1024)];
    }else{ // GB
        return [NSString stringWithFormat:@"%.3fGB", (double)bytes / (1024 * 1024 * 1024)];
    }
}
@end

给懒得粘贴的人的下载链接

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值