开发者社区> 问答> 正文

iOS uploadProgress 回调不走

id credential = [[OSSFederationCredentialProvider alloc] initWithFederationTokenGetter:^OSSFederationToken *{

    OSSFederationToken * token = [OSSFederationToken new];
    token.tAccessKey = accessKey;
    token.tSecretKey = secretKey;
    token.tToken = tToken;
    return token;
}];
OSSClientConfiguration * conf = [OSSClientConfiguration new];
conf.maxRetryCount = 2;
conf.timeoutIntervalForRequest = 30;
self.client = [[OSSClient alloc] initWithEndpoint:ENDPOINT credentialProvider:credential clientConfiguration:conf];

OSSPutObjectRequest * put = [OSSPutObjectRequest new];
// 必填字段
put.bucketName = bucketName;
put.objectKey = key;
put.uploadingData = data;
if (option) {
    put.uploadProgress = ^(int64_t bytesSent, int64_t totalByteSent, int64_t totalBytesExpectedToSend) {
        // 当前上传段长度、当前已经上传总长度、一共需要上传的总长度
       
    };
}
if (option.callbackParam) {
    put.callbackParam = option.callbackParam;
}
if (option.params) {
    put.callbackVar = option.params;
}

OSSTask * putTask = [self.client putObject:put];
[putTask continueWithBlock:^id(OSSTask *task) {
    if (!task.error) {
        NSLog(@"upload object success!");
    } else {
        NSLog(@"upload object failed, error: %@" , task.error);
    }
    return nil;
}];

展开
收起
王衍超 2016-12-07 10:53:22 2607 0
0 条回答
写回答
取消 提交回答
问答分类:
问答标签:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
手淘iOS性能优化探索 立即下载
From Java/Android to Swift iOS 立即下载
深入剖析iOS性能优化 立即下载