Skip to content

Instantly share code, notes, and snippets.

@mikebuss
Created November 4, 2018 00:56
Show Gist options
  • Save mikebuss/7677791e5417660a0780d79f3ae588c1 to your computer and use it in GitHub Desktop.
Save mikebuss/7677791e5417660a0780d79f3ae588c1 to your computer and use it in GitHub Desktop.
@property (nonatomic, strong) NSMutableArray *players;
- (NSMutableArray *)players {
if (!_players) {
_players = [[NSMutableArray alloc] init];
}
return _players;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment