Change placeholder boolean to time interval

This commit is contained in:
Ryan Nystrom
2015-02-23 14:01:17 -08:00
parent 203d500416
commit 5d76d6649f
4 changed files with 26 additions and 11 deletions

View File

@@ -332,11 +332,11 @@ typedef CALayer *(^ASDisplayNodeLayerBlock)();
@property (nonatomic, assign) BOOL placeholderEnabled;
/**
* @abstract Toggle to fade-out the placeholder when a node's contents are finished displaying.
* @abstract Set the time it takes to fade out the placeholder when a node's contents are finished displaying.
*
* @discussion Defaults to NO.
* @discussion Defaults to 0 seconds.
*/
@property (nonatomic, assign) BOOL placeholderFadesOut;
@property (nonatomic, assign) NSTimeInterval placeholderFadeDuration;
/** @name Hit Testing */
@@ -535,4 +535,8 @@ typedef CALayer *(^ASDisplayNodeLayerBlock)();
* Convenience method, equivalent to [layer addSublayer:node.layer].
*/
- (void)addSubnode:(ASDisplayNode *)node;
@end
@end
@interface ASDisplayNode (Deprecated)
@property (nonatomic, assign) BOOL placeholderFadesOut ASDISPLAYNODE_DEPRECATED;
@end