Type Property 型プロパティ

EAAccessoryDidDisconnect

A notification that is posted when an accessory is disconnected and no longer available for your application to use. ある通知、それはあるアクセサリが接続解除されるそしてもはやあなたのアプリケーションに利用可能でない時に投函されます。

Declaration 宣言

static let EAAccessoryDidDisconnect: NSNotification.Name

Discussion 議論

The notification object is the shared accessory manager. The userInfo dictionary contains an EAAccessoryKey, whose value is the EAAccessory object representing the accessory that was disconnected. Before delivery of this notification can occur, you must call the registerForLocalNotifications() method to let the system know you are interested in receiving this notification. 通知オブジェクトは、共有アクセサリマネージャです。userInfo辞書はEAAccessoryKeyを含みます、それの値は接続解除されたアクセサリを表しているEAAccessoryオブジェクトです。この通知の配達が現れる前に、あなたはregisterForLocalNotifications()メソッドを呼び出してシステムにあなたがこの通知を受け取ることに興味があることを知らせます。

If your accessory manager has a delegate, the delegate can use the accessoryDidDisconnect(_:) method to receive this notification instead. あなたのアクセサリマネージャが委任先を持つならば、その委任先はaccessoryDidDisconnect(_:)メソッドを使って、この通知を代わりに受け取ります。

See Also 参照

External Accessory 外部アクセサリ