Skip to content

Instantly share code, notes, and snippets.

@lemonkey
Forked from quellish/property.m
Created October 28, 2016 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lemonkey/f7ae6be1cbff4280463700ee9b56993a to your computer and use it in GitHub Desktop.
Save lemonkey/f7ae6be1cbff4280463700ee9b56993a to your computer and use it in GitHub Desktop.
Managed object property access
[[managedObject managedObjectContext] performBlock:^{
NSString *value = [managedObject someValue];
[NSOperationQueue mainQueue] addOperationWithBlock:^{
[[self label] setText:value];
}];
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment