Show Gameball User Profile

Show your user's profile including all details, user challenges, and the leaderboard on your iOS app.

Gameball’s views are accessible through the code below. You just need to use it on any button action.

guard let vc = self.gameballApp?.launchGameball() else {return}
vc.modalPresentationStyle = .fullScreen
self.present(vc, animated: true, completion: nil)

You must first register your API Key and a player before accessing the views.

Last updated