如何以编程方式测试ios上传和下载速度

时间:2016-12-03 06:04:08

标签: ios networking

如何分别计算上传速度和下载速度。

如何以编程方式确定互联网上的速度? 像这样 enter image description here

1 个答案:

答案 0 :(得分:0)

首次捕获下载或上传任务的开始时间,我的意思是当您开始下载或上传捕获或存储当前系统时间时,

   NSTimeInterval startTime = [NSDate timeIntervalSinceReferenceDate];

然后你可以检查你的download or upload speed喜欢,

   double yourSpeed = bytesTransferred / ([NSDate timeIntervalSinceReferenceDate] - startTime);

bytesTransferred,您可以从delegate methods NSURlSession获得NSUrlConnectionreact-native run-android无论您使用的是什么!!!