在Dropbox中我可以轻松上传我的文件,但是当我试图获得上传进度(上传文件的百分比)时,我失败了,我正在使用我在
中找到的这种方法RESTClient实现,H
它应该工作但没有任何事情发生 :
- (void)restClient:(DBRestClient*)client uploadProgress:(CGFloat)progress forFile:(NSString *)destPath from:(NSString *)srcPath {
NSLog(@"%0.00f",progress);
}
我也将我的班级设置为restclient的委托,并且在其他方面也可以正常工作。
答案 0 :(得分:5)
- (void)restClient:(DBRestClient*)client uploadProgress:(CGFloat)progress forFile:(NSString *)destPath from:(NSString *)srcPath
{
NSLog(@"%.2f",progress); //Correct way to visualice the float
}