0

myFristViewmySecondViewの2 つのビューがあります。 myFristViewには、データベース内のフィールドを読み取って PHP サーバーに送信できるコードがあります。このコードNSInvocationOperationは、このクラスを使用してバックグラウンド モードでファイルを送信します。

ファイルをサーバーに送信するプロセスは少し遅くなります (データベースに多くのレコードがあるため)。送信されるすべてのファイルが mySecondView に入るのを待たなければならないことがよくあります。これは、以前のビューであるARC を使用しているためです。動作を停止し、アプリは 2 番目のビューに集中し、ファイルの送信を停止します。

だから私は方法を見つけたいと思います: 画面 (myFristView) を離れると、アプリケーションはファイルを PHP サーバーに送信するコマンドを実行し続けます。

NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(sendFiles) object:nil];
[queue addOperation:operation];

-(void)sendFiles{

                       ......

NSString *urlString = @"http://www.website.com/receiveFiles.php";
    NSString *filename = @"fazerbem.sqlite";
    request= [[[NSMutableURLRequest alloc] init] autorelease];
    [request setURL:[NSURL URLWithString:urlString]];
    [request setHTTPMethod:@"POST"];
    NSString *boundary = @"---------------------------14737809831466499882746641449";
    NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundary];
    [request addValue:contentType forHTTPHeaderField: @"Content-Type"];
    NSMutableData *postbody = [NSMutableData data];
    [postbody appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
    [postbody appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"userfile\"; filename=\"%@.jpg\"\r\n", filename] dataUsingEncoding:NSUTF8StringEncoding]];
    [postbody appendData:[[NSString stringWithString:@"Content-Type: application/octet-stream\r\n\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
    [postbody appendData:[NSData dataWithData:YOUR_NSDATA_HERE]];
    [postbody appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
    [request setHTTPBody:postbody];

    NSData *returnData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
    returnString = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding];
    NSLog(@"%@", returnString);

}
4

1 に答える 1

0

動画のアップロードに使用しています。

まず、バックグラウンド タスク プロパティを宣言します。

@property UIBackgroundTaskIdentifier backgroundUploadingID;

バックグラウンド タスクのセットアップ:

UIApplication *app = [UIApplication sharedApplication];

self.backgroundUploadingID = [app beginBackgroundTaskWithExpirationHandler:^{

   dispatch_async(dispatch_get_main_queue(), ^{
       if (self.backgroundUploadingID != UIBackgroundTaskInvalid)
       {
               UILocalNotification *alert = [[UILocalNotification alloc] init];
                    [alert setAlertBody:@"Video Upload Timed Out"];
                    [[UIApplication sharedApplication] presentLocalNotificationNow:alert];

                    [app endBackgroundTask:self.backgroundUploadingID];
                    self.backgroundUploadingID = UIBackgroundTaskInvalid;
         }
       });
}];

タスクが終了したら、無効にすることを忘れないでください。

if (self.backgroundUploadingID != UIBackgroundTaskInvalid)
{
        //  NSLog(@"Ending backgrounding");
        UIApplication *app = [UIApplication sharedApplication];
        [app endBackgroundTask:self.backgroundUploadingID];
        self.backgroundUploadingID = UIBackgroundTaskInvalid;
}
于 2014-08-20T14:48:04.920 に答える