NSThreadWillExitNotification
An
NSThread
object posts this notification when it receives the exit
message, before the thread exits. Observer methods invoked to receive this notification execute in the exiting thread, before it exits.
NSThread
オブジェクトは、それがexit
メッセージを受け取る時に、スレッドが終了する前に、この通知を投函します。この通知を受け取るために発動されるオブザーバメソッドは、この通知は既存のスレッドにおいて、それが終了する前に、遂行します。
NSWillBecomeMultiThreadedNotification
Posted when the first thread is detached from the current thread. The
NSThread
class posts this notification at most once—the first time a thread is detached using detachNewThreadSelector:toTarget:withObject:
or the start
method. Subsequent invocations of those methods do not post this notification. Observers of this notification have their notification method invoked in the main thread, not the new thread. The observer notification methods always execute before the new thread begins executing.
最初のスレッドが現在のスレッドから切り離される時に投函されます。NSThread
クラスはこの通知を最大一度だけ — スレッドがdetachNewThreadSelector:toTarget:withObject:
またはstart
メソッドを使って分離される最初の時に投函します。これらのメソッドの続いて起こる発動は、この通知を投函しません。この通知のオブザーバは、メインスレッドにおいて発動されるそれらの通知メソッドを持ちます、新しいスレッドではなく。オブザーバ通知メソッドは、常に新しいスレッドが遂行を始める前に遂行します。