android用のapacheライブラリandroidに相当する、インポートできるobjective-cライブラリがないようです。
同じphp POSTスクリプトを使用したい場合、iOSアプリからサーバーにビデオファイルを送信する最良の方法は何ですか?
を使用している場合NSMutableRequest
、どうすればマルチパーティ性をエミュレートできますか? 次のコード ブロックは同等でしょうか?
multipartentity.addpart("file", new FileBody(file));
mulitpartentity.addpart("form_submitted", new StringBody("true"));
&
NSMutableData *body = [NSMutableData data];
NSMutableString *str = [[NSMutableString alloc] init];
[str appendFormat:@"file=%@", self.fileData];
[str appendFormat:@"&form_submitted=%@", @"true"];
[body appendData:[postString dataUsingEncoding:NSUTF8StringEncoding]];
[theRequest setHTTPBody:body];