HTTP POST 経由で画像データを送信するにはどうすればよいですか?
次のコードがあります。
NSURL *aUrl = [NSURL URLWithString:@"http://demo25.projectproofonline.com/soul_mate_modified/save.php"];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:aUrl
cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60.0];
[request setHTTPBody:[postString dataUsingEncoding:NSUTF8StringEncoding]];
[request setHTTPMethod:@"POST"];
[NSURLConnection connectionWithRequest:request delegate:self];