Created
November 4, 2018 00:56
-
-
Save mikebuss/7677791e5417660a0780d79f3ae588c1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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