0
私は次のようなシナリオを持っています:バックグラウンドスレッドで何度もメソッドを呼びたいのですが、返される値はデリゲートメソッドから来ています。バックグラウンドスレッドでこれをどうやって処理できますか?メインスレッドのデリゲートメソッドから回答を受け取ります
NSOperationQueue *operationQueue = [NSOperationQueue new];
for (int i = 0 ; i < 100; i++) {
NSBlockOperation *blockOperation = [NSBlockOperation blockOperationWithBlock:^{
[self.routingService calculateRoute:self.routeSettings];
}];
[self.operationQueue addOperation:blockOperation];
}
//Delegate method
- (void)routingService:(SKRoutingService *)routingService didFinishRouteCalculationWithInfo:(SKRouteInformation *)routeInformation {
//Here I want to process routeInformation
}
私を助けてください。 :)
が答えてくれてありがとう方法委任あなたの中にこれを行うことができますが、動作しませんようです:( – Ovidiu