GCKSession(受保护)类别

GCKSession(受保护)类别参考

概览

只能由 GCKSession 子类替换和调用的方法。

开始时间
3.0

实例方法摘要

(void) - start
 启动会话。更多...
 
(void) - endWithAction:
 结束具有指定操作的会话。更多...
 
(void) - notifyDidStartWithSessionID:
 由子类调用,以通知框架已启动会话。更多...
 
(void) - notifyDidFailToStartWithError:
 由子类调用,以通知框架会话无法启动。更多...
 
(void) - notifyDidEndWithError:willTryToResume:
 由子类调用,以通知框架会话已结束。更多...
 
(void) - notifyDidReceiveDeviceVolume:muted:
 由子类调用,以通知框架已从设备收到更新后的设备音量和静音状态。更多...
 
(void) - notifyDidReceiveDeviceStatus:
 由子类调用,以通知框架已从设备收到更新后的状态。更多...
 
(void) - notifyDidSuspendWithReason:
 已弃用,请勿使用 - 作为空操作实现。了解详情...
 
(void) - notifyDidResume
 已弃用,请勿使用 - 作为空操作实现。了解详情...
 

方法详细信息

- (void) start

启动会话。

这是一项异步操作。必须被子类替换。

扩展 GCKSession 类。

- (void) endWithAction: (GCKSessionEndAction action

结束具有指定操作的会话。

这是一项异步操作。必须被子类替换。

Parameters
actionThe action to take when ending the session; see GCKSessionEndAction for more details.

扩展 GCKSession 类。

- (void) notifyDidStartWithSessionID: (NSString *)  sessionID

由子类调用,以通知框架已启动会话。

Parameters
sessionIDThe session's unique ID.

扩展 GCKSession 类。

- (void) notifyDidFailToStartWithError: (GCKError *)  error

由子类调用,以通知框架会话无法启动。

Parameters
errorThe error that occurred.

扩展 GCKSession 类。

- (void) notifyDidEndWithError: (nullable NSError *)  error
willTryToResume: (BOOL)  willTryToResume 

由子类调用,以通知框架会话已结束。

Parameters
errorThe error that caused the session to end, if any. Should be nil if the session was ended intentionally.
willTryToResumeWhether the session will try to resume itself automatically.

扩展 GCKSession 类。

- (void) notifyDidReceiveDeviceVolume: (float)  volume
muted: (BOOL)  muted 

由子类调用,以通知框架已从设备收到更新后的设备音量和静音状态。

Parameters
volumeThe device's current volume. Must be in the range [0, 1.0];
mutedThe device's current mute state.

扩展 GCKSession 类。

- (void) notifyDidReceiveDeviceStatus: (nullable NSString *)  statusText

由子类调用,以通知框架已从设备收到更新后的状态。

Parameters
statusTextThe new status.

扩展 GCKSession 类。

- (void) notifyDidSuspendWithReason: (GCKConnectionSuspendReason reason

已弃用,请勿使用 - 作为空操作实现。

Deprecated:
请勿拨打电话。

扩展 GCKSession 类。

- (void) notifyDidResume

已弃用,请勿使用 - 作为空操作实现。

Deprecated:
请勿拨打电话。

扩展 GCKSession 类。