Add ASViewController and update Multiplex sample to use it.

This commit is contained in:
Huy Nguyen
2015-09-16 22:22:08 +03:00
parent 21bdbbe12f
commit 07c0d78c71
9 changed files with 270 additions and 143 deletions

View File

@@ -0,0 +1,19 @@
//
// ScreenNode.h
// Sample
//
// Created by Huy Nguyen on 16/09/15.
// Copyright (c) 2015 Facebook. All rights reserved.
//
#import <AsyncDisplayKit/AsyncDisplayKit.h>
@interface ScreenNode : ASDisplayNode
@property (nonatomic, strong) ASMultiplexImageNode *imageNode;
@property (nonatomic, strong) ASTextNode *textNode;
- (void)start;
- (void)reload;
@end