Skip to content

Instantly share code, notes, and snippets.

@joelturnbull
Last active December 11, 2015 17:29
Show Gist options
  • Save joelturnbull/4634990 to your computer and use it in GitHub Desktop.
Save joelturnbull/4634990 to your computer and use it in GitHub Desktop.
Setting Party values using accessors after initialization
// Setting Party values using accessors after initialization
Party *party = [[Party alloc] init];
party.date = [NSDate date];
party.location = @"Unicorn Office";
party.attendees = @[@"Joel",@"Bill",@"Peter"];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment