- performSelector:withObject:afterDelay:
Invokes a method of the receiver on the current thread using the default mode after a delay.
レシーバのあるメソッドを現在のスレッド上で省略時のモードを使ってある猶予の後で発動します。
- performSelector:withObject:afterDelay:inModes:
Invokes a method of the receiver on the current thread using the specified modes after a delay.
レシーバのあるメソッドを現在のスレッド上で指定したモードを使ってある猶予の後で発動します。
- performSelectorOnMainThread:withObject:waitUntilDone:
Invokes a method of the receiver on the main thread using the default mode.
レシーバのメソッドをメインスレッド上で省略時のモードを使って発動します。
- performSelectorOnMainThread:withObject:waitUntilDone:modes:
Invokes a method of the receiver on the main thread using the specified modes.
レシーバのメソッドをメインスレッド上で指定モードを使って発動します。
- performSelector:onThread:withObject:waitUntilDone:
Invokes a method of the receiver on the specified thread using the default mode.
レシーバのメソッドを指定スレッド上で省略時のモードを使って発動します。
- performSelector:onThread:withObject:waitUntilDone:modes:
Invokes a method of the receiver on the specified thread using the specified modes.
レシーバのメソッドを指定スレッド上で指定モードを使って発動します。
- performSelectorInBackground:withObject:
Invokes a method of the receiver on a new background thread.
レシーバのメソッドを新しいバックグラウンドスレッド上で発動します。
+ cancelPreviousPerformRequestsWithTarget:selector:object:
Cancels perform requests previously registered with
performSelector:withObject:afterDelay:
.