iOS技术文档No.25 Foundation_NSByteCountFormatter下载速度

个别时候我们可能需要知道我们当前的网络速度是多少,例如我们在下载的时候,NSByteCountFormatter是系统提供给我们的转换字节的一个类,可以配合我们常用的第三方AFNetworking来计算网速

NSByteCountFormatter转换字节的方法
+ (NSString *)stringFromByteCount:(long long)byteCount countStyle:(NSByteCountFormatterCountStyle)countStyle;

代码

需要定义一个下载对象:DownTask。DownTask需要有的属性:lastRead(记录一秒前的数据)、speed(速度)、date(记录上一秒计算之后的时间)。注意:这里的一秒不是严格意义上的一秒,有可能大于一秒,我们计算的是平均速度,所以不会误差太大。

下载中代码:
//构造资源链接
    NSString *urlString = @"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4";
    NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
    //创建AFN的manager对象
    AFHTTPSessionManager *manager = [[AFHTTPSessionManager alloc] initWithSessionConfiguration:configuration];
    //构造URL对象
    NSURL *url = [NSURL URLWithString:urlString];
    //构造request对象
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
    
    
    DownTask *down = [[DownTask alloc]init];
    //获取当前时间
    NSDate *currentDate = [NSDate date];
    down.date=currentDate;//开始时间
    //使用系统类创建downLoad Task对象
    NSURLSessionDownloadTask *task = [manager downloadTaskWithRequest:request progress:^(NSProgress * _Nonnull downloadProgress) {
        NSLog(@"下载进度---%lld---%lld", downloadProgress.completedUnitCount,downloadProgress.totalUnitCount);//下载进度
        //获取当前时间
        NSDate *currentDate = [NSDate date];
        //当前时间和上一秒时间做对比,大于等于一秒就去计算
        if ([currentDate timeIntervalSinceDate:down.date] >= 1) {
            //时间差
            double time = [currentDate timeIntervalSinceDate:down.date];
            //计算速度
            long long speed = (downloadProgress.completedUnitCount-down.lastRead)/time;
            //把速度转成KB或M
            down.speed = [down formatByteCount:speed];
            //维护变量,将计算过的清零
            down.lastRead = downloadProgress.completedUnitCount;
            //维护变量,记录这次计算的时间
            down.date = currentDate;
            NSLog(@"下载速度---%@",down.speed);
        }
    } destination:^NSURL * _Nonnull(NSURL * _Nonnull targetPath, NSURLResponse * _Nonnull response) {
        //返回下载到哪里(返回值是一个路径)
        //拼接存放路径
        NSURL *pathURL = [[NSFileManager defaultManager] URLForDirectory:NSDocumentDirectory inDomain:NSUserDomainMask appropriateForURL:nil create:YES error:nil];
        return [pathURL URLByAppendingPathComponent:[response suggestedFilename]];
    } completionHandler:^(NSURLResponse * _Nonnull response, NSURL * _Nullable filePath, NSError * _Nullable error) {
        //下载完成走这个block
        if (!error)
        {
            //如果请求没有错误(请求成功), 则打印地址
            NSLog(@"%@", filePath);
        }
    }];
    
    //开始请求
    [task resume];

DownTask代码:

#import 
#import 
@interface DownTask : NSObject
@property (nonatomic,assign)NSUInteger lastRead;//记录一秒前的数据
@property (nonatomic,copy)NSString *speed;//速度
@property (nonatomic,strong)NSDate *date;//记录上一秒计算之后的时间

- (NSString*)formatByteCount:(long long)size;
@end
#import "DownTask.h"

@implementation DownTask
- (NSString*)formatByteCount:(long long)size
{
    return [NSByteCountFormatter stringFromByteCount:size countStyle:NSByteCountFormatterCountStyleFile];
}
@end

实际测试时由于我找的资源太小了,下载的太快,大家可以找个大点的资源或者想办法给电脑限速了试试

iOS技术文档No.25 Foundation_NSByteCountFormatter下载速度_第1张图片
下载速度.png

你可能感兴趣的:(iOS技术文档No.25 Foundation_NSByteCountFormatter下载速度)