我们正在使用QB Content TUploadFile将文件上传到QB内容,我们使用setProgress检查上传的进度,但我们收到了多次0到0.5的随机值。
检查上传到QB内容的进度的正确方法是什么?
[QBContent TUploadFile:imageData fileName:imageName contentType:@"image/png" isPublic:YES delegate:self context:(__bridge void*)context];
- (void)setProgress:(float)progress
{
NSLog(@"progress: %f", progress);
}