通过userInfo更新NSManagedObjects

时间:2012-03-23 10:53:58

标签: ios cocoa core-data asihttprequest

我正在编写一个实用程序,用于将照片从iOS设备异步上传到Web服务器。每张照片都由Photo核心数据实体表示,该实体具有文件系统中照片文件名的属性,以及布尔has_been_uploaded属性。

我想构建要上传的这些图像的队列,然后在上传完成后将其has_been_uploaded属性设置为YES。我正在使用ASIHTTPRequest和ASINetworkQueue作为网络方面的事情。

从Core Data获取所需的图像并上传它们的工作正常,我的问题是更新正确实体的has_been_uploaded属性。

目前我的代码是:

for (Photo *myPhoto in [fetchedResultsController fetchedObjects]) {
    if(myPhoto.path != nil) {
        __block ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:@"http://example.com/postimage"]];

        NSString *imagePath = [NSString stringWithFormat:@"%@.png",[documentsDirectory stringByAppendingPathComponent:[myPhoto valueForKey:@"path"]]];
        [request addFile:imagePath withFileName:[NSString stringWithFormat:@"%@.png",myPhoto.path] andContentType:@"image/png" forKey:@"image"];
        [request.userInfo setValue:myPhoto forKey:@"photo"];
        [[self imageUploadQueue] addOperation:request];
    }
}
[[self imageUploadQueue] go];

但是在ASIHTTPRequest的didComplete委托方法中,当我尝试从请求的userInfo字典中检索它时,Photo对象总是为null:

- (void)queueRequestFinished:(ASIHTTPRequest *)request
{
    Photo *photo = (Photo *)[request.userInfo valueForKey:@"photo"];
    NSLog(@"uploaded image for photo: %@",photo);
}

如何可靠地检索正确的Core Data对象,以便在每个请求完成后我可以更新其状态?

谢谢!

1 个答案:

答案 0 :(得分:0)

由于每个managedobject都绑定了它的managedobjectcontext,我认为,你只是不能通过互联网发送一个对象然后把它取回来,因为它会失去它与上下文的链接,所以你最好发送NSmanagedObjectID然后使用此ID从您的上下文中检索对象。