これは私のコードが今どのように見えるかであり、私はこれらのメソッドをシリアルに呼び出したいと思います:
-(void) methodOnBackThread // this method will run on a background thread
{
[runner runThisMethod]; // and this will run on the same background thread as well
[runner runThisOtherMethod]; // and so will this one
// but I want this one to run on the main thread :
[runner runThisMethodOnTheMainThreadUsing:thisParameter using:thisOtherParamater andUsing:thisOtherOneAsWell];
[runner runThisOtherMethod]; // this one will run on the background thread as well
// but I want this one to run on the main thread :
[runner runThisMethodOnTheMainThreadUsing:thisParameter using:thisOtherParamater andUsing:thisOtherOneAsWell];
[runner runThisOtherMethod]; // this one will run on the background thread as well
// etc..
}
私は使用する必要dispatch_get_main_queue
があると思いますが、上記の場合にこれを実装する方法がわかりません。
メインスレッドに送信[runner runThisMethodOnTheMainThreadUsing:thisParameter using:thisOtherParamater andUsing:thisOtherOneAsWell];
してから、残りのバックグラウンドメソッドの実行に戻り、次のメソッドで必要になった場合にメインスレッドを再度取得するにはどうすればよいですか?