Cleaning up manual display per @secretiverhyme

This commit is contained in:
Ryan Nystrom
2014-12-02 15:22:07 -08:00
parent 8b0dbf7288
commit 531be46dfd
31 changed files with 29 additions and 1215 deletions

View File

@@ -295,12 +295,18 @@
@property (nonatomic, assign) BOOL shouldRasterizeDescendants;
/**
* @abstract Calls -setNeedsDisplay and -displayIfNeeded on the node's backing store and recursively calls -display on
* all subnodes forcing the entire node hierarchy to be displayed. This method must be called on the main thread but
* there are plans to allow this on any thread.
* @abstract Calls -setNeedsDisplay and -displayIfNeeded on the node's backing store.
*
* @note This method must be called on the main thread but there are plans to allow this on any thread.
*/
- (void)display;
/**
* @abstract Call -display on the node and recursively on all subnodes, forcing the entire node hierarchy to be
* displayed.
*/
- (void)recursivelyDisplay;
/**
* @abstract Display the node's view/layer immediately on the current thread, bypassing the background thread rendering.
*/