Reworked table controller state into a bit mask to coalesce state change into a single observation. fixes #753

* Added RKLogIntegerAsBinary() helper for logging bit masks
* Implemented RKTableControllerDidLoadObjectsNotification for static and fetched results table controllers
* Cleaned up state definitions within table controller
* Documentation cleanups
This commit is contained in:
Blake Watters
2012-05-23 16:35:56 -04:00
parent 98c8780a31
commit 992bfb96cc
11 changed files with 1011 additions and 472 deletions

View File

@@ -205,3 +205,9 @@ void RKLogConfigureFromEnvironment(void);
of a failed key-value validation error.
*/
void RKLogValidationError(NSError *);
/**
Logs the value of an NSUInteger as a binary string. Useful when
examining integers containing bitmasked values.
*/
void RKLogIntegerAsBinary(NSUInteger);