1

iPhoneからサーバーに画像をアップロードしようとしています。私はそうすることができますが、インジケーターを表示する必要があります。私のコードは

NSData *imageData = UIImageJPEGRepresentation(newImage, 90);

// setting up the URL to post to
NSString *urlString = [NSString stringWithFormat:@"URL",[[formater stringFromDate:now] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
// setting up the request object now
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init] ;
[request setURL:[NSURL URLWithString:urlString]];
[request setHTTPMethod:@"POST"];
  NSString *boundary = [NSString stringWithFormat:@"---------------------------14737809831466499882746641449"];
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundary];
[request addValue:contentType forHTTPHeaderField: @"Content-Type"];
 NSMutableData *body = [NSMutableData data];
[body appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"image\"; filename=\"ipodfile.jpg\"\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithFormat:@"Content-Type: application/octet-stream\r\n\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[NSData dataWithData:imageData]];
[body appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
// setting the body of the post to the reqeust
[request setHTTPBody:body];

リクエストを起動するコードは次のとおりです。

[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue]
                           completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
                               NSLog(@"Finished with status code: %i", [(NSHTTPURLResponse *)response statusCode]);
 }];

では、インジケーターを表示できるように、残り時間を計算するにはどうすればよいですか?御時間ありがとうございます。

4

2 に答える 2

4

次の接続デリゲートの方法を使用できます。

- (void)       connection:(NSURLConnection *)connection
          didSendBodyData:(NSInteger)bytesWritten
        totalBytesWritten:(NSInteger)totalBytesWritten
totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite;

(このような長い引数名をどのようにラップする必要がありますか?)
これはのドキュメントにはありませんがNSURLConnectionDataDelegate、パブリックヘッダーを確認すると、NSURLConnection.hそこにあります。だから、それを使うことについて心配しないでください。

ドキュメントからURLローディングシステムプログラミングガイド> NSURLConnectionの使用

アップロードの進行状況の見積もり

connection:didSendBodyData:totalBytesWritten:totalBytesExpectedToWrite:デリゲートメソッドを使用して、HTTPPOSTアップロードの進行状況を見積もることができます。接続が失敗したり、接続で認証チャレンジが発生したりする可能性があるため、これはアップロードの進行状況を正確に測定するものではないことに注意してください。

于 2013-02-28T14:10:12.860 に答える
1

プログレスバーのようなものを見せたいと思います。非同期接続の進行状況など、ネットワーク管理のための多くのツールを提供するMKNetworkKitを使用することをお勧めします。このリンクを確認してください。

于 2013-02-28T14:03:21.127 に答える