// // PlaygroundContainerNode.h // Sample // // Created by Hannah Troisi on 3/19/16. // Copyright © 2016 Facebook. All rights reserved. // #import @protocol PlaygroundContainerNodeDelegate - (void)relayoutWithSize:(ASSizeRange)size; @end @interface PlaygroundContainerNode : ASCellNode @property (nonatomic, weak) id delegate; + (NSUInteger)containerNodeCount; - (instancetype)initWithIndex:(NSUInteger)index; @end