我正在尝试使用 AmazonS3Client 来放置对象。奇怪的是,它似乎只在我在 iOS 主线程上运行 putObject 代码时才起作用。
代码基本上是这样的:
-(void)uploadVideoToS3
{
S3PutObjectRequest * videoPOR = [[S3PutObjectRequest alloc] initWithKey:video.onlineVideoID inBucket:video.onlineVideoBucketName];
videoPOR.contentType = @"video/quicktime";
videoPOR.data = [NSData dataWithContentsOfURL:video.convertedVideoLocalURL];
videoPOR.delegate = self;
// Put the thumbnail and video into the specified s3
AmazonS3Client * s3 = [AmazonClientManager s3];
[s3 putObject:videoPOR];
[videoPOR release];
}
存储桶存在,我有权限等。如果我只是调用
[self uploadVideoToS3]
在我的代码中(不在主线程中),整个视频上传方法运行(我有一些 NSLogs 来证明这一点),但我从来没有收到任何状态回调,没有抛出异常,并且对象永远不会放入它的存储桶中在 S3 上。
当我像这样在主线程上调用上传函数时:
dispatch_async(dispatch_get_main_queue(), ^(void) {
[self uploadVideoToS3];
});
我收到进度回调,一切正常,对象已成功放入 S3 存储桶。
有谁知道 putObject 是否仅适用于 iOS 主线程?如果是这样,那将是不幸的,因为它通常是 UI 线程。
谢谢,凯文
PS 我尝试在非主线程上分派函数调用,但结果相同。