在Dropbox中获取上传进度(ios)

Oce*_*lot 2 dropbox ios

在Dropbox我可以轻松上传我的文件,但当我试图获得我的上传进度(上传文件的百分比)我失败了,我正在使用我发现的这种方法

RESTClient实现,H

它应该工作但没有任何事情发生:

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

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

}
Run Code Online (Sandbox Code Playgroud)

我也将我的班级设置为restclient的委托,并且在其他方​​面也可以正常工作.

Sam*_*mui 5

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

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

}
Run Code Online (Sandbox Code Playgroud)

  • 这肯定有效,但它产生的数字没有多大意义. (2认同)