How to find is this first time player registering / playing game?

46 Views Asked by At

How to find is this first time player registering / playing game ? I am using GKLocalPlayer and game centre to enter in game and ( and leaderboard to get data ) I need to know is this first time player is playing this game.

1

There are 1 best solutions below

4
On

Just store a boolean locally in NSUserDefaults.

NSString *hasCompletedFirstLaunchKey = @"kHasCompletedFirstLaunchKey";
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
if (![defaults objectForKey:hasCompletedFirstLaunchKey]) {

    //first time code goes here

    //set the key to yes
    [defaults setObject:@YES forKey:hasCompletedFirstLaunchKey];
    [defaults synchronize];
}