iOS Game Center Achievements Development

NOVASOLUTIONS.TECHNOLOGY is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.
Development and support of all types of mobile applications:
Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1 servicesAll 1735 services
iOS Game Center Achievements Development
Simple
~2-3 business days
FAQ
Our competencies:
Development stages
Latest works
  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    756
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    624
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1052
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    947
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    862
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    445

Developing Game Center Achievements System (iOS)

Game Center is Apple's built-in platform for gamification: achievements, leaderboards, matchmaking. Integrating achievements takes less than a day — provided correct setup in App Store Connect and proper local player authentication.

Setup and Basic Integration

In App Store Connect, create achievements with unique identifiers like com.yourapp.achievement.first_win. For each, set an icon 512×512, title, description, and point value (1–100). Achievements can be one-time or progressive — progressive ones have maximumPoints, and you can report intermediate progress (50%, 75%, 100%).

Local player authentication is a mandatory step, without it all Game Center calls fail with an error:

import GameKit

func authenticatePlayer() {
    GKLocalPlayer.local.authenticateHandler = { [weak self] viewController, error in
        if let vc = viewController {
            // Show Game Center authorization UI
            self?.present(vc, animated: true)
        } else if GKLocalPlayer.local.isAuthenticated {
            // Player is authenticated, can report achievements
            self?.loadAchievements()
        } else if let error = error {
            // Game Center unavailable (Screen Time restrictions, no account)
            print("GC auth error: \(error.localizedDescription)")
        }
    }
}

authenticateHandler needs to be set once at launch. Calling it again with a new handler is normal when transitioning between scenes. Game Center itself caches authentication status.

Reporting an achievement:

func reportAchievement(identifier: String, percentComplete: Double = 100.0) {
    guard GKLocalPlayer.local.isAuthenticated else { return }

    let achievement = GKAchievement(identifier: identifier)
    achievement.percentComplete = percentComplete
    achievement.showsCompletionBanner = true // Apple's native banner

    GKAchievement.report([achievement]) { error in
        if let error = error {
            // Save to queue for retry
            print("Achievement report failed: \(error)")
        }
    }
}

showsCompletionBanner = true shows a system banner in Game Center style at 100%. You can disable it and show custom UI, but the native banner doesn't require extra layout work and meets iOS user expectations.

Local Progress Caching

If GKAchievement.report fails with an error (no network, Game Center unavailable) — progress is lost. Solution: save unreported achievements locally via UserDefaults or CoreData and retry on next successful connection.

// On startup, after authentication — load already earned achievements from server
func loadAchievements() {
    GKAchievement.loadAchievements { achievements, error in
        // Sync with local game state
        let earned = Set(achievements?.compactMap { $0.percentComplete >= 100 ? $0.identifier : nil } ?? [])
        AchievementManager.shared.syncWithGameCenter(earned: earned)
    }
}

Timeline Benchmarks

App Store Connect setup + basic integration (authentication, reporting, caching) — 1 day. Progressive achievements with local progress tracking — within 2–3 days if game logic is ready.