loadPreviousOccurrence(completionHandler:)
Loads the previous recurring leaderboard occurrence that the player submits a score to.
Declaration
func loadPreviousOccurrence(completionHandler: @escaping @Sendable (GKLeaderboard?, (any Error)?) -> Void)func loadPreviousOccurrence() async throws -> GKLeaderboard?Parameters
- completionHandler:
A block that GameKit calls when this method loads the leaderboard.
The block receives the following parameters:
- leaderboard
The previous occurrence of this leaderboard that the player submits a score to, or the most recent occurrence if GameKit can’t find the previous one.
- error
Describes an error if it occurs, or
nilif the operation completes.