別のスレッドでコードを実行する最良の方法は何ですか?
NSInvocationOperation *operationToComplete = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(operationMethod) object:nil];
NSOperationQueue *queueToStart=[[NSOperationQueue alloc] init];
[queueToStart addOperation:operationToComplete];
-(void) operationMethod
{
NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&_response error:&_error];
}
また:
NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:request
delegate:self];
私は2番目の方法を行ってきましたが、これに関して少し混乱しているか、別の方法を使用しています.