我在我的服務器上有視頻,我想知道我的視頻需要從設備中的服務器下載多少時間。所以我可以計算下載時間並檢查服務器是否緩慢。任何幫助,將不勝感激。如何從設備中的服務器獲取視頻的下載時間(以毫秒爲單位)iOS中的
這裏是我的代碼:
NSURLRequest *request = [[NSURLRequest alloc] initWithURL:[NSURL URLWithString:url] cachePolicy:NSURLCacheStorageNotAllowed timeoutInterval:[[Configuration sharedInstance] fatchTimeOut]];
[GMURLConnection sendAsynchronousRequest:request queue:self.operationQueue type:type withSubType:subType completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
//**********************Success Handling ********************
if (type == OperationTypeMeta) {
failCount = 0;
NSError *error = nil;
NSArray *serverResponse=[NSArray array];
if(data)
serverResponse = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:&error];
}];
請顯示您的代碼 – 2014-09-22 06:34:35