1
スレッドを作成しましたが、今度はスレッドからメインのGUIスレッドにメッセージ(特定のイベントを実行する)を送信したいので、 GUIスレッドがiphoneでこれを行う方法を教え"PostMessage"を動作中のスレッドからメインのGUIスレッドにメッセージを送信する
スレッドを作成しましたが、今度はスレッドからメインのGUIスレッドにメッセージ(特定のイベントを実行する)を送信したいので、 GUIスレッドがiphoneでこれを行う方法を教え"PostMessage"を動作中のスレッドからメインのGUIスレッドにメッセージを送信する
//This will call selected method on main thread and you can do what ever you want to do in your selected method.
[self performSelectorOnMainThread:@selector(yourmethod) withObject:yourobject waitUntilDone:NO];
を(Objective Cのを)私のmessage.canいずれかを実行することを願って、これがお手伝いします。..
あなたはGCDとブロック
を使用することができますdispatch_async(dispatch_get_main_queue(), ^{
// UI code to run on main thread
});