我正在尝试使用 JSON 将数据发送到服务器。我可以使用我的对象和关键参数创建我的 NSDictionary。但是我想发送我的图片,图片是UIImage。
NSDictionary* mainJSON = [NSDictionary dictionaryWithObjectsAndKeys:
@"John",
@"First_Name",
@"McCintosh",
@"Last_name",
<HERE I WANT PICTURE>,
@"Profile_picture",
nil];
// Here I convert to NSDATA
NSData * jsonData = [NSJSONSerialization dataWithJSONObject:mainJSON options:NSJSONWritingPrettyPrinted error:&error];
// Sending operation :
dispatch_async(kBgQueue, ^
{
NSData * data = [NSData dataWithContentsOfURL:@"addresSERVER"];
[self performSelectorOnMainThread:@selector(receivedResponseFromServer:)
withObject:data
waitUntilDone:YES];
}
);
所以我想知道如何在我的 NSDictionary 中添加我的图片?因为我想发送我的图片内容。如果我添加我的对象 UIImage... 我会发送整个对象对吗?
谢谢