<GCKDiscoveryManagerListener> プロトコル

<GCKDiscoveryManagerListener> プロトコル リファレンス

概要

GCKDiscoveryManager リスナー プロトコル。

シンセ
3.0

<NSObjectNSObject> を継承します。

インスタンス メソッドの概要

(void) - didStartDiscoveryForDeviceCategory:
 特定のデバイス カテゴリについて検出が開始したときに呼び出されます。その他...
 
(void) - willUpdateDeviceList
 検出されたデバイスのリストがなんらかの方法で更新されると呼び出されます。その他...
 
(void) - didUpdateDeviceList
 検出されたデバイスのリストがなんらかの方法で更新された場合に呼び出されます。その他...
 
(void) - didInsertDevice:atIndex:
 新しく検出されたデバイスがデバイスのリストに挿入されたときに呼び出されます。その他...
 
(void) - didUpdateDevice:atIndex:
 以前に検出されたデバイスが更新されると呼び出されます。その他...
 
(void) - didUpdateDevice:atIndex:andMoveToIndex:
 以前に検出されたデバイスがリスト内で更新または並べ替えられた場合に呼び出されます。その他...
 
(void) - didRemoveDeviceAtIndex:
 以前に検出したデバイスがオフラインになり、デバイスのリストから削除されたときに呼び出されます。その他...
 

メソッドの詳細

- (void) didStartDiscoveryForDeviceCategory: (NSString *)  deviceCategory
optional

特定のデバイス カテゴリについて検出が開始したときに呼び出されます。

- (void) willUpdateDeviceList
optional

検出されたデバイスのリストがなんらかの方法で更新されると呼び出されます。

- (void) didUpdateDeviceList
optional

検出されたデバイスのリストがなんらかの方法で更新された場合に呼び出されます。

- (void) didInsertDevice: (GCKDevice *)  device
atIndex: (NSUInteger)  index 
optional

新しく検出されたデバイスがデバイスのリストに挿入されたときに呼び出されます。

Parameters
deviceThe device that was inserted.
indexThe list index at which the device was inserted.
- (void) didUpdateDevice: (GCKDevice *)  device
atIndex: (NSUInteger)  index 
optional

以前に検出されたデバイスが更新されると呼び出されます。

Parameters
deviceThe device that was updated.
indexThe list index of the device.
- (void) didUpdateDevice: (GCKDevice *)  device
atIndex: (NSUInteger)  index
andMoveToIndex: (NSUInteger)  newIndex 
optional

以前に検出されたデバイスがリスト内で更新または並べ替えられた場合に呼び出されます。

Parameters
deviceThe device that was updated.
indexThe previous list index of the device.
newIndexThe current list index of the device.
- (void) didRemoveDeviceAtIndex: (NSUInteger)  index
optional

以前に検出したデバイスがオフラインになり、デバイスのリストから削除されたときに呼び出されます。

Parameters
indexThe list index of the device that was removed.