+ detachNewThreadSelector:toTarget:withObject:
- main
Availability 有効性
Technology
- (void)start;
This method asynchronously spawns the new thread and invokes the receiver’s main
method on the new thread. The executing
property returns YES
once the thread starts executing, which may occur after the start
method returns.
このメソッドは、非同期的に新しいスレッドを生み出します、そしてレシーバのもつmain
メソッドを新しいスレッド上で発動します。 executing
プロパティは、YES
を返します、一旦スレッドが遂行を開始するならば、それはstart
メソッドが返る後に発生するかもしれません。
If you initialized the receiver with a target and selector, the default main
method invokes that selector automatically.
あなたがレシーバをあるターゲットとセレクタで初期化したならば、省略時のmain
メソッドはセレクタを自動的に発動します。
If this thread is the first thread detached in the application, this method posts the NSWill
with object nil
to the default notification center.
このスレッドがそのアプリケーションにおいて最初に分離されたスレッドならば、このメソッドはNSWill
をオブジェクトnil
とともに省略時の通知センターへと投函します。
+ detachNewThreadSelector:toTarget:withObject:
- main
- initWithTarget:selector:object:
NSThread
object initialized with the given arguments.
与えられた引数それらで初期化されたNSThread
オブジェクトを返します。
- init
NSThread
object.
初期化されたNSThread
オブジェクトを返します。