myFristViewとmySecondViewの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);
}