mirror of
https://github.com/HackPlan/AsyncDisplayKit.git
synced 2026-05-17 16:53:33 +08:00
22 lines
427 B
Objective-C
22 lines
427 B
Objective-C
//
|
|
// PlaygroundContainerNode.h
|
|
// Sample
|
|
//
|
|
// Created by Hannah Troisi on 3/19/16.
|
|
// Copyright © 2016 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import <AsyncDisplayKit/AsyncDisplayKit.h>
|
|
|
|
@protocol PlaygroundContainerNodeDelegate <NSObject>
|
|
|
|
- (void)relayoutWithSize:(ASSizeRange)size;
|
|
|
|
@end
|
|
|
|
@interface PlaygroundContainerNode : ASDisplayNode
|
|
|
|
@property (nonatomic, weak) id<PlaygroundContainerNodeDelegate> delegate;
|
|
|
|
@end
|