2

在保管箱中,我可以轻松上传文件,但是当我尝试获取上传进度(上传文件的百分比)时失败了,我使用的是我在

休息客户端,h

它应该可以工作,但什么也没发生:

- (void)restClient:(DBRestClient*)client uploadProgress:(CGFloat)progress forFile:(NSString *)destPath from:(NSString *)srcPath {

    NSLog(@"%0.00f",progress);

}

我也已将我的班级设置为 restclient 的代表,并且在其他方​​面工作正常。

4

1 回答 1

5
- (void)restClient:(DBRestClient*)client uploadProgress:(CGFloat)progress forFile:(NSString *)destPath from:(NSString *)srcPath 
{

    NSLog(@"%.2f",progress); //Correct way to visualice the float

}
于 2012-08-03T18:58:54.030 回答