loadDefaultLeaderboardCategoryID(completionHandler:)
Loads the category identifier for the local player’s default leaderboard.
Declaration
func loadDefaultLeaderboardCategoryID(completionHandler: (@Sendable (String?, (any Error)?) -> Void)? = nil)func loadDefaultLeaderboardCategoryID() async throws -> StringParameters
- completionHandler:
A block to call when the request completes.
The block receives the following parameters:
- categoryID
The category ID string for the local player’s default leaderboard.
- error
If an error occurrs, this parameter holds an error object that explains the error. Otherwise, the value of this parameter is
nil.