mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-08 13:42:51 +00:00
19 lines
407 B
Objective-C
19 lines
407 B
Objective-C
//
|
|
// ASViewController.h
|
|
// AsyncDisplayKit
|
|
//
|
|
// Created by Huy Nguyen on 16/09/15.
|
|
// Copyright (c) 2015 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <AsyncDisplayKit/ASDisplayNode.h>
|
|
|
|
@interface ASViewController : UIViewController
|
|
|
|
@property (nonatomic, strong, readonly, nonnull) ASDisplayNode *node;
|
|
|
|
- (nullable instancetype)initWithNode:(nonnull ASDisplayNode *)node;
|
|
|
|
@end
|