Giao thức <GCKGameManagerChannelDelegate>

Tham chiếu giao thức <GCKGameManagerChannelDelegate>

Tổng quan

Giao thức uỷ quyền GCKGameManagerChannel.

Deprecated:
Game Manager API không còn được hỗ trợ nữa và sẽ bị xoá trong một bản phát hành sau này.

Kế thừa <GCKCastChannelNSObject>.

Tóm tắt phương thức của thực thể

(void) - gameManagerChannel:stateDidChangeTo:from:
 Được gọi khi trạng thái Trình quản lý trò chơi đã thay đổi. Thêm...
 
(void) - gameManagerChannel:didReceiveGameMessage:forPlayerID:
 Được gọi khi người nhận gửi tin nhắn trò chơi cho một người chơi cụ thể. Thêm...
 
(void) - gameManagerChannel:requestDidSucceedWithID:result:
 Được gọi khi yêu cầu của người chơi hoặc yêu cầu trò chơi thành công. Thêm...
 
(void) - gameManagerChannel:requestDidFailWithID:error:
 Được gọi khi yêu cầu của người chơi hoặc yêu cầu trò chơi không thành công kèm theo lỗi. Thêm...
 
(void) - gameManagerChannelDidConnect:
 Được gọi khi Trình quản lý trò chơi của người nhận kết nối thành công và chúng tôi sẵn sàng tương tác với trò chơi đó. Thêm...
 
(void) - gameManagerChannel:didFailToConnectWithError:
 Được gọi khi Trình quản lý trò chơi của người nhận gặp lỗi trong quá trình kết nối. Thêm...
 

Chi tiết phương thức

- (void) gameManagerChannel: (GCKGameManagerChannel *)  gameManagerChannel
stateDidChangeTo: (GCKGameManagerState *)  currentState
from: (GCKGameManagerState *)  previousState 

Được gọi khi trạng thái Trình quản lý trò chơi đã thay đổi.

Parameters
gameManagerChannelThe affected GCKGameManagerChannel.
currentStateThe current state.
previousStateThe previous state.
- (void) gameManagerChannel: (GCKGameManagerChannel *)  gameManagerChannel
didReceiveGameMessage: (id)  gameMessage
forPlayerID: (NSString *)  playerID 

Được gọi khi người nhận gửi tin nhắn trò chơi cho một người chơi cụ thể.

Parameters
gameManagerChannelThe affected GCKGameManagerChannel.
gameMessageThe game message sent by the receiver.
playerIDThe player ID associated with the game message.
- (void) gameManagerChannel: (GCKGameManagerChannel *)  gameManagerChannel
requestDidSucceedWithID: (NSInteger)  requestID
result: (GCKGameManagerResult *)  result 

Được gọi khi yêu cầu của người chơi hoặc yêu cầu trò chơi thành công.

Parameters
gameManagerChannelThe affected GCKGameManagerChannel.
requestIDThe request ID that failed. This is the ID returned when the request was made.
resultThe GCKGameManagerResult returned as part of this request response.
- (void) gameManagerChannel: (GCKGameManagerChannel *)  gameManagerChannel
requestDidFailWithID: (NSInteger)  requestID
error: (GCKError *)  error 

Được gọi khi yêu cầu của người chơi hoặc yêu cầu trò chơi không thành công kèm theo lỗi.

Parameters
gameManagerChannelThe affected GCKGameManagerChannel.
requestIDThe request ID that failed. This is the ID returned when the request was made.
errorThe error describing the failure.
- (void) gameManagerChannelDidConnect: (GCKGameManagerChannel *)  gameManagerChannel
required

Được gọi khi Trình quản lý trò chơi của người nhận kết nối thành công và chúng tôi sẵn sàng tương tác với trò chơi đó.

Parameters
gameManagerChannelThe affected GCKGameManagerChannel.
- (void) gameManagerChannel: (GCKGameManagerChannel *)  gameManagerChannel
didFailToConnectWithError: (GCKError *)  error 
required

Được gọi khi Trình quản lý trò chơi của người nhận gặp lỗi trong quá trình kết nối.

Parameters
gameManagerChannelThe affected GCKGameManagerChannel.
errorThe error describing the failure.