3

我试图将 MBProgressHUD 与 NSURLConnection 一起使用。

MBProgressHUD 的 Demo 项目中的示例报告:

- (IBAction)showURL:(id)sender {
    NSURL *URL = [NSURL URLWithString:@"https://github.com/matej/MBProgressHUD/zipball/master"];
    NSURLRequest *request = [NSURLRequest requestWithURL:URL];

    NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
    [connection start];
    [connection release];

    HUD = [[MBProgressHUD showHUDAddedTo:self.navigationController.view animated:YES] retain];
    HUD.delegate = self;
}



- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
    expectedLength = [response expectedContentLength];
    currentLength = 0;
    HUD.mode = MBProgressHUDModeDeterminate;
}

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
    currentLength += [data length];
    HUD.progress = currentLength / (float)expectedLength;
}

- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
    HUD.customView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"37x-Checkmark.png"]] autorelease];
    HUD.mode = MBProgressHUDModeCustomView;
    [HUD hide:YES afterDelay:2];
}

- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
    [HUD hide:YES];
}

运行它,确定模式下的 HUD 旋转良好。

我试图实现这一点,但在这里

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
        currentLength += [data length];
        HUD.progress = currentLength / (float)expectedLength;
    }

圆圈是空的,没有填充。

我不知道这是否取决于请求的 url 的尺寸。

我请求从我的网站下载一个 plist (~80 kb),但圈子一直是空的并且控制台报告

<Error>: void CGPathAddArc(CGPath*, const CGAffineTransform*, CGFloat, CGFloat, CGFloat, CGFloat, CGFloat, bool): invalid value for start or end angle.

我什至尝试这样做:

float progress = 0.0f;
    while (progress < 1.0f) {
        progress += 0.01f;
        HUD.progress = progress;
    }

但是现在这个圈子已经完全填满了,没有做任何动画。

我认为这取决于所请求网址的尺寸,但我不太确定,有人知道如何解决这个问题吗?

4

3 回答 3

8

我以这种方式解决了这个问题,从NSURLRequestto切换NSMutableURLRequest并将值设置为编码(以前在 gzip 中)

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:anURL];
[request addValue:@"" forHTTPHeaderField:@"Accept-Encoding"];
于 2012-09-26T10:02:29.473 回答
6

您应该检查[response expectedContentLength]in的值didReceiveResponse

http 服务器可以省略“Content-Length”标头,而使用“Transfer-Encoding: chunked”。在这种情况下,内容长度是先验未知的并[response expectedContentLength]返回NSURLResponseUnknownLength(即-1)`。

我可以想象设置HUD.progress为负值会导致CGPathAddArc控制台消息。

根据文档,累积值也可能currentLength大于预期的响应长度,因此您也应该检查一下。

于 2012-09-02T14:25:27.060 回答
0

在 swift 中,我通过在 url 请求的Accept-Encoding标头字段中发送空字符串解决了这个问题。预期写入的总字节数现在返回正在下载的文件的实际大小(以字节为单位)。

var request = URLRequest(url: url)
request.addValue("", forHTTPHeaderField: "Accept-Encoding")
于 2020-04-16T00:30:36.210 回答