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,18 @@
//
// ASViewController.h
// AsyncDisplayKit
//
// Created by Huy Nguyen on 16/09/15.
// Copyright (c) 2015 Facebook. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <AsyncDisplayKit/AsyncDisplayKit.h>
@interface ASViewController : UIViewController
@property (nonatomic, strong, readonly) ASDisplayNode *node;
- (instancetype)initWithNode:(ASDisplayNode *)node;
@end