-
-
Save lemonkey/f7ae6be1cbff4280463700ee9b56993a to your computer and use it in GitHub Desktop.
Managed object property access
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
[[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