+ detachNewThreadSelector:toTarget:withObject:
Detaches a new thread and uses the specified selector as the thread entry point.
新しいスレッドを分離します、そしてこの措定されたセレクタをスレッドエントリポイントとして使います。
- start
Starts the receiver.
レシーバを開始します。
Availability 有効性
Technology
- (void)main;
The default implementation of this method takes the target and selector used to initialize the receiver and invokes the selector on the specified target. If you subclass NSThread
, you can override this method and use it to implement the main body of your thread instead. If you do so, you do not need to invoke super
.
このメソッドの省略時の実装は、レシーバを初期化するのに使われたターゲットとセレクタを取ります、そしてセレクタをその指定されたターゲット上で発動します。あなたがNSThread
のサブクラスを作成するならば、あなたはこのメソッドをオーバーライドして、そしてそれをあなたのスレッドのメインボディを実装するために代わりに使用できます。あなたがそうするならば、あなたはsuper
を発動する必要はありません。
You should never invoke this method directly. You should always start your thread by invoking the start
method.
あなたは決してこのメソッドを直接に発動すべきではありません。あなたは、常にあなたのスレッドをstart
メソッドを発動することによって開始するべきです。
+ detachNewThreadSelector:toTarget:withObject:
- start