class func detachNewThreadSelector (Selector, toTarget : Any, with: Any?)
func main()
Availability 有効性
Technology
func start()
This method asynchronously spawns the new thread and invokes the receiver’s main()
method on the new thread. The is
property returns true
once the thread starts executing, which may occur after the start()
method returns.
このメソッドは、非同期的に新しいスレッドを生み出します、そしてレシーバのもつmain()
メソッドを新しいスレッド上で発動します。 is
プロパティは、true
を返します、一旦スレッドが遂行を開始するならば、それは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
とともに省略時の通知センターへと投函します。
class func detachNewThreadSelector (Selector, toTarget : Any, with: Any?)
func main()
init(target: Any, selector: Selector, object: Any?)
NSThread
object initialized with the given arguments.
与えられた引数それらで初期化されたNSThread
オブジェクトを返します。
init()
NSThread
object.
初期化されたNSThread
オブジェクトを返します。