0

我希望发送一个很长的字符串,这是一个编码为字符串的图像。我需要使用 POST 方法发送该信息。我已经在 中实现了相同的Android using key-value pair功能,我需要在 iOS 中使用键值对来实现相同的功能。请帮助我提供有用的资源/方法。

编辑 1

我试过什么

[dictionnary setObject:@"admin"  forKey:@"username"];
[dictionnary setObject:@"123123" forKey:@"password"];

NSError *error = nil;

NSData *jsonData = [NSJSONSerialization dataWithJSONObject:dictionnary
                                                   options:kNilOptions
                                                     error:&error];

NSString *urlString = @"MY CALL URL";

NSURL *url = [NSURL URLWithString:urlString];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
[request setHTTPMethod:@"POST"];

[request setHTTPBody:jsonData];
NSURLResponse *response = NULL;
NSError *requestError = NULL;
NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&requestError];
NSLog(@"response is obtained");

NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding] ;
NSLog(@"%@", responseString);

编辑 2

我得到的错误

Request Error Error Domain=kCFErrorDomainCFNetwork Code=303 "The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 303.)" UserInfo=0x7ba0120 {NSErrorFailingURLKey=http://yahoo.com/, NSErrorFailingURLStringKey=http://yahoo.com/}
4

2 回答 2

0

在您的帖子字典中添加您的图像字符串:

[dictionnary setObject:imageEncodedString forKey:@"image"];

于 2012-11-26T10:27:59.360 回答
0

您可以使用 NSMutableDictionary

看看这个

于 2012-11-26T09:57:18.063 回答