The notification object is the NSFileHandle object that sent the notification. The userInfo dictionary contains the following information:
通知オブジェクトは、通知を送ったNSFileHandleオブジェクトです。userInfo辞書は、以下の情報を含みます:
Key
Value
値
NSFileHandleNotificationDataItem
An NSData object containing the available data read from a socket connection.
@"NSFileHandleError"
An NSNumber object containing an integer representing the UNIX-type error which occurred.
Posted by NSAppleEventManager before it first dispatches an Apple event. Your application can use this notification to avoid registering any Apple event handlers until the first time at which they may be needed.NSAppleEventManagerによって、最初にそれがあるアップルイベントを発送(ディスパッチ)する前に投稿されます。あなたのアプリケーションは、この通知をそれが必要とされるかもしれない最初の時まで何らかのアップルイベントハンドラを登録することを避けるために使用できます。
Posted whenever an NSUndoManager object opens or closes an undo group (except when it opens a top-level group) and when checking the redo stack in canRedo.NSUndoManagerオブジェクトがアンドゥグループを開くまたは閉じる時はいつでも(それがトップレベルグループを開くときを除いて)そしてやり直しスタックをcanRedoにおいて調べる時に投函されます。
Posted after an NSUndoManager object closes an undo group, which occurs in the implementation of the endUndoGrouping() method.NSUndoManagerオブジェクトがアンドゥグループを閉じる後に投函されます、それはendUndoGrouping()メソッドの実装において発生します。
Posted whenever an NSUndoManager object opens an undo group, which occurs in the implementation of the beginUndoGrouping() method.NSUndoManagerオブジェクトがアンドゥグループを開く時はいつでも投函されます、それはbeginUndoGrouping()メソッドの実装において発生します。
Posted before an NSUndoManager object closes an undo group, which occurs in the implementation of the endUndoGrouping() method.NSUndoManagerオブジェクトがアンドゥグループを閉じる前に投函されます、それはendUndoGrouping()メソッドの実装において発生します。
Posted when the first thread is detached from the current thread. The NSThread class posts this notification at most once—the first time a thread is detached using detachNewThreadSelector(_:toTarget:with:) or the start() method. Subsequent invocations of those methods do not post this notification. Observers of this notification have their notification method invoked in the main thread, not the new thread. The observer notification methods always execute before the new thread begins executing.
最初のスレッドが現在のスレッドから切り離される時に投函されます。NSThread クラスはこの通知を最大一度だけ — スレッドがdetachNewThreadSelector(_:toTarget:with:)またはstart()メソッドを使って分離される最初の時に投函します。これらのメソッドの続いて起こる発動は、この通知を投函しません。この通知のオブザーバは、メインスレッドにおいて発動されるそれらの通知メソッドを持ちます、新しいスレッドではなく。オブザーバ通知メソッドは、常に新しいスレッドが遂行を始める前に遂行します。
Posted after the system detects that the amount of available disk space is getting low. The notification is posted to the default notification center.
利用可能なディスクの空きが少なくなることをシステムが検出した後に投函されます。通知は、省略時の通知センターに投函されます。
A notification that is posted whenever the calendar day of the system changes, as determined by the system calendar, locale, and time zone.
システムのカレンダー、ロケール、そしてタイムゾーンによって決定されるところの、システムの暦日が変化するときはいつでもポストされる通知。
Posted when a file handle object establishes a socket connection between two processes, creates a file handle object for one end of the connection, and makes this object available to observers.
An NSThread object posts this notification when it receives the exit() message, before the thread exits. Observer methods invoked to receive this notification execute in the exiting thread, before it exits.NSThreadオブジェクトは、それがexit()メッセージを受け取る時に、スレッドが終了する前に、この通知を投函します。この通知を受け取るために発動されるオブザーバメソッドは、この通知は既存のスレッドにおいて、それが終了する前に、遂行します。