I’m using the gameNetwork Library for a turn-based iOS game and I would like to set the Turn Timeout date
of the nextParticipant when ending the currentParticipant turn.
Is it possible to set the GameKit turnTimeout date though gameNetwork?
If it is not possible, what is the default turnTimeout in gameNetwork set to?
From Apple’s Game Kit Reference:
Turn Timeouts
Common values for turn timeouts.
extern NSTimeInterval GKTurnTimeoutDefault;
extern NSTimeInterval GKTurnTimeoutNone;
Constants
GKTurnTimeoutDefault
Indicates that the player has one week to take a turn.
Available in iOS 6.0 and later.
Declared in GKTurnBasedMatch.h.
GKTurnTimeoutNone
Indicates that the player’s turn never times out.
Available in iOS 6.0 and later.
Declared in GKTurnBasedMatch.h.
Thanks,
Warren