func start()
func main()
Availability 有効性
Technology
class func detachNewThreadSelector(_ selector: Selector
,
toTarget target: Any,
with argument: Any?)
aSelector
The selector for the message to send to the target. This selector must take only one argument and must not have a return value. ターゲットに送られるメッセージに対するセレクタ。このセレクタは、ただ1つの引数を取らなければなりません、そして戻り値を持ってはいけません。
aTarget
The object that will receive the message a
on the new thread.
メッセージa
を新しいスレッド上で受け取るであろうオブジェクト。
anArgument
The single argument passed to the target. May be nil
.
ターゲットに渡されるただ1つの引数。nil
かもしれません。
The objects a
and an
are retained during the execution of the detached thread, then released. The detached thread is exited (using the exit()
class method) as soon as a
has completed executing the a
method.
オブジェクトa
とan
は、この分離されたスレッドの遂行の間、保持されます、それから解放されます。分離されたスレッドは退去させられます(exit()
クラスメソッドを使って)、a
がa
メソッドの遂行を完了するやいなや。
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
とともに省略時の通知センターへと投函します。
func start()
func main()
class func isMultiThreaded () -> Bool
class var current: Thread