Merge branch 'master' into update-objc

Conflicts:
	AsyncDisplayKit/Private/ASDisplayNode+FrameworkPrivate.h
This commit is contained in:
Adlai Holler
2015-12-22 00:28:21 -05:00
103 changed files with 2968 additions and 204 deletions

View File

@@ -24,6 +24,11 @@ NS_ASSUME_NONNULL_BEGIN
*/
typedef UIView * _Nonnull(^ASDisplayNodeViewBlock)();
/**
* UIView creation block. Used to create the backing view of a new display node.
*/
typedef UIViewController *(^ASDisplayNodeViewControllerBlock)();
/**
* CALayer creation block. Used to create the backing layer of a new display node.
*/
@@ -687,7 +692,6 @@ typedef NS_OPTIONS(NSUInteger, ASInterfaceState)
* @param node The node to be added.
*/
- (void)addSubnode:(ASDisplayNode *)node;
- (NSString *)name;
@end
/** CALayer(AsyncDisplayKit) defines convenience method for adding sub-ASDisplayNode to a CALayer. */
@@ -698,7 +702,6 @@ typedef NS_OPTIONS(NSUInteger, ASInterfaceState)
* @param node The node to be added.
*/
- (void)addSubnode:(ASDisplayNode *)node;
- (NSString *)name;
@end